aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Nemerson <evan@coeus-group.com>2013-02-19 03:16:07 -0800
committerDan Williams <dcbw@redhat.com>2013-02-19 09:19:11 -0600
commitadd455c7e587883abbe1b16e511a3a8b24064b38 (patch)
treefaf456a103ed4d67f636b95a93984e124161aae0
parent8fb57bb5534c83c358a9c4c4c681ac787c14289a (diff)
build: fix passing arguments to configure from autogen.sh (bgo #694157)
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index f1260d0d..694a22a1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -18,7 +18,7 @@ PKG_NAME=ModemManager
autopoint --force
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
if test -z "$NOCONFIGURE"; then
- ./configure --enable-maintainer-mode $@
+ ./configure --enable-maintainer-mode "$@"
fi
)