Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e7ace3c887c29a7cf7750924730ac57980382c1f
commit e7ace3c887c29a7cf7750924730ac57980382c1f Author: crazy <[email protected]> Date: Tue Nov 24 02:08:46 2015 +0100 util.sh - Fbuildsystem_configure() * set --disable-silent-rules by default when using autotools. * we already set make V=1 but we need disable the silent rules on ./configure also diff --git a/source/include/util.sh b/source/include/util.sh index 652b0be..a2c691b 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -851,6 +851,12 @@ Fbuildsystem_configure() { Fconfoptstryset "infodir" "$Finfodir" Fconfoptstryset "mandir" "$Fmandir" Fconfoptstryset "build" "$Fbuildchost" + ## try to disable silent rules + ## we already set V=1 by default but this isn't going to work + ## when apps using enabled silence rules on ./configure.. + ## we really want to know what is going on. + ## don't ask me how to do that for perl/ruby or other stuff -- crazy -- + Fconfopts+=" --disable-silent-rules" Fexec $_F_conf_configure $Fconfopts "$@" return $? ;; _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
