diff options
author | cypherpunks <cypherpunks@torproject.org> | 2016-12-15 17:02:30 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-23 10:35:26 -0500 |
commit | b4c95bb42a85d6c620b694d9eb03803ed3b4de2d (patch) | |
tree | 5d8626f260728687e557afcadf4fed3e7c3fccfd /autogen.sh | |
parent | a1c0ebc3ebc49924fa38dd4f60d89204208aacc8 (diff) | |
download | tor-b4c95bb42a85d6c620b694d9eb03803ed3b4de2d.tar.gz tor-b4c95bb42a85d6c620b694d9eb03803ed3b4de2d.zip |
Report errors when updating configuration files
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 8c43a9798a..276dd4047c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,12 +1,12 @@ #!/bin/sh if [ -x "`which autoreconf 2>/dev/null`" ] ; then - opt="-if" + opt="-i -f -W all,error" for i in $@; do case "$i" in -v) - opt=$opt"v" + opt="${opt} -v" ;; esac done |