]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove -v flag from autoreconf by default
authorNick Mathewson <nickm@torproject.org>
Fri, 18 Jan 2013 23:00:51 +0000 (18:00 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 18 Jan 2013 23:02:08 +0000 (18:02 -0500)
You can get it back by saying ./autogen.sh -v

Patch from onizuka; for bug 4664.

This isn't a complete fix, since starting from a clean checkout still
reports that it's installing stuff

autogen.sh
changes/4664 [new file with mode: 0644]

index 0592f16c2e3a21905362de59b8439896ceee1187..efa2251c2430b3766322bdb0243715db68f8aed8 100755 (executable)
@@ -1,7 +1,17 @@
 #!/bin/sh
 
 if [ -x "`which autoreconf 2>/dev/null`" ] ; then
-  exec autoreconf -ivf
+  opt="-if"
+
+  for i in $@; do
+    case "$i" in
+      -v)
+        opt=$opt"v"
+        ;;
+    esac
+  done
+
+  exec autoreconf $opt
 fi
 
 set -e
diff --git a/changes/4664 b/changes/4664
new file mode 100644 (file)
index 0000000..eb81da9
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor features (build):
+    - Do not report status verbosely from autogen.sh unless the -v flag
+      is specified. Fixes issue 4664. Patch from Onizuka.
+