From 952ea58986ec972ae014037c9a8ccf1318a54ac3 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Sat, 6 Sep 2014 21:19:46 +0930 Subject: [PATCH 1/9] make autogen.sh work with variables with spaces eg ./autogen.sh CXXFLAGS="-O0 -g3" --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index d3c0a6f..ae95c2f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -110,7 +110,7 @@ fi if test x$NOCONFIGURE = x; then printbold "Running $srcdir/configure $@ ..." - $srcdir/configure $@ + $srcdir/configure "$@" else printbold "Skipping configure process." fi -- 2.1.0