[ooo-build-commit] .: autogen.sh
Fridrich Strba
fridrich at kemper.freedesktop.org
Mon Oct 4 07:17:04 PDT 2010
autogen.sh | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
New commits:
commit f5cfcf58c202694530c16cd5e2b2412270cd6714
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Mon Oct 4 16:16:09 2010 +0200
Don't quote stuff that does not need to be quoted
diff --git a/autogen.sh b/autogen.sh
index f0cc1d0..85e8278 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -16,8 +16,6 @@ requote_args ()
sed -e 's/.*configure //' -e 's/=\(\([^"'"'"'-]\|-[^-]\| \)*\)\( \|$\)/="\1" /g'
}
-new_args=`echo $@ | requote_args`
-
old_args=""
if test $# -eq 0 && test -f config.log; then
old_args=`grep '\$ ./configure' config.log | requote_args`
@@ -31,7 +29,7 @@ automake --gnu --add-missing --copy --warnings=no-portability || exit 1;
# intltoolize --copy --force --automake
autoconf || exit 1;
if test "x$NOCONFIGURE" = "x"; then
- eval `echo ./configure $new_args $old_args`
+ eval `echo ./configure $old_args "$@"`
else
echo "Skipping configure process."
fi
More information about the ooo-build-commit
mailing list