This would be a Portfile change, adding in the flag you mention. Here's my
recommendation:
{{{
diff --git a/math/octave/Portfile b/math/octave/Portfile
index b20fb7b622..032ea2dce6 100644
--- a/math/octave/Portfile
+++ b/math/octave/Portfile
@@ -273,7 +273,8 @@ configure.args-append \
configure.args-append \
--with-framework-carbon \
--without-x \
- --enable-static
+ --enable-static \
+ --disable-silent-rules
configure.args-append \
--disable-openmp
}}}
On Tue, Jul 24, 2018, at 3:26 AM, Jan Stary wrote:
> On Jul 23 15:51:49, [email protected] wrote:
> > Looks like the link command is missing LAPACK or the equivalent (e.g.
> > maybe: Atlas, OpenBLAS, Eigen), but since the log doesn't include the
> > actual link command I can't say for certain. Maybe add some verbosity to
> > the build stage to show the actual link command? - MLD
>
> How do I do that on port(1) level?
> Or do I need to tweak the actual Portfile with
> something like --disable-silent-rules?
>
> Thanks,
>
> Jan