diff options
author | Evan Nemerson <evan@coeus-group.com> | 2013-02-19 03:16:07 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2013-02-19 09:19:11 -0600 |
commit | add455c7e587883abbe1b16e511a3a8b24064b38 (patch) | |
tree | faf456a103ed4d67f636b95a93984e124161aae0 /autogen.sh | |
parent | 8fb57bb5534c83c358a9c4c4c681ac787c14289a (diff) | |
download | ModemManager-add455c7e587883abbe1b16e511a3a8b24064b38.tar.gz |
build: fix passing arguments to configure from autogen.sh (bgo #694157)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index f1260d0d7..694a22a19 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 ) |