# HG changeset patch # User Mike Miller # Date 1585593688 25200 # Node ID c26838a3afa674660f625693997321a63586a346 # Parent d597dc0a5f743f135b1010d6eabe1785247a8b15 pkg: build with "V=1" for verbose build rules * configure_make.m: Add "V=1" to build environment for verbose build rules. diff -r d597dc0a5f74 -r c26838a3afa6 scripts/pkg/private/configure_make.m --- a/scripts/pkg/private/configure_make.m Fri Mar 27 13:11:46 2020 -0700 +++ b/scripts/pkg/private/configure_make.m Mon Mar 30 11:41:28 2020 -0700 @@ -65,6 +65,11 @@ "OCTAVE"; octave_binary}; scenv = sprintf ("%s='%s' ", cenv{:}); + if (verbose) + ## Add standard V=1 make argument for verbose build rules + scenv = [scenv, "V=1"]; + endif + ## Configure. if (exist (fullfile (src, "configure"), "file")) flags = "";