From: Roy Marples Date: Fri, 7 Mar 2014 13:35:10 +0000 (+0000) Subject: Log args and ignore --disable-silent-rules X-Git-Tag: v6.3.2~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec9a2de0965fd7aa2907e98e98bf36f9b99a1723;p=thirdparty%2Fdhcpcd.git Log args and ignore --disable-silent-rules --- diff --git a/configure b/configure index 57258b30..78b5d23a 100755 --- a/configure +++ b/configure @@ -1,6 +1,8 @@ #!/bin/sh # Try and be like autotools configure, but without autotools +echo "configure args: $*" + # Ensure that we do not inherit these from env HOOKSET=false INET= @@ -72,6 +74,7 @@ for x do --includedir) eval INCLUDEDIR="$INCLUDEDIR${INCLUDEDIR:+ }$var";; --datadir|--infodir) ;; # ignore autotools --disable-maintainer-mode|--disable-dependency-tracking) ;; + --disable-silent-rules) ;; -V|--version) v=$(sed -ne 's/.*VERSION[[:space:]]*"\([^"]*\).*/\1/p' defs.h); c=$(sed -ne 's/^.*copyright\[\] = "\([^"]*\).*/\1/p' dhcpcd.c);