_autosetup: fix apparent typo

This commit is contained in:
David Anderson 2014-08-18 00:08:59 -07:00
parent 25fc233f4d
commit bb25de5481
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ check_version()
## ---------- now run autoreconf
cmdline="autoreconf -i";
## -- if _autosetup was invoked with -f run autoreconf with -f to force a recreation of all files
if [ "x$1" == "x-f" ]; then
if [ "$1" == "-f" ]; then
cmdline="autoreconf -i -f";
fi
echo "$cmdline"