mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-23 20:03:31 +01:00
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
This commit is contained in:
parent
e0581a4b57
commit
ee421e68d5
12
autogen.sh
12
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
|
||||
|
4
changes/4664
Normal file
4
changes/4664
Normal file
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user