diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-01-18 18:00:51 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-18 18:02:08 -0500 |
commit | ee421e68d5231e3962b45f8bbfc6505c8e6f3315 (patch) | |
tree | 4f76d03c0071ea8624ed9fb741ef5028cb9b2d2b /autogen.sh | |
parent | e0581a4b571f13dd0de801792c853e22ac244a36 (diff) | |
download | tor-ee421e68d5231e3962b45f8bbfc6505c8e6f3315.tar.gz tor-ee421e68d5231e3962b45f8bbfc6505c8e6f3315.zip |
Remove -v flag from autoreconf by default
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
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 0592f16c2e..efa2251c24 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 |