Skip to content
Snippets Groups Projects
Commit ee421e68 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

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
parent e0581a4b
No related branches found
No related tags found
No related merge requests found
#!/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
......
o Minor features (build):
- Do not report status verbosely from autogen.sh unless the -v flag
is specified. Fixes issue 4664. Patch from Onizuka.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment