From: Rafal Krypa Date: Tue, 31 Dec 2013 15:03:17 +0000 (+0100) Subject: autogen.sh: fix passing arguments to configure X-Git-Tag: v1.0.4~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6805171361f1aeb3f593979c5136f282c4cc6b4;p=platform%2Fupstream%2Fsmack.git autogen.sh: fix passing arguments to configure Fixing error when arguments to autogen.sh contain white space, i.e.: ./autogen.sh CFLAGS='-Wall -Wextra' Signed-off-by: Rafal Krypa --- diff --git a/autogen.sh b/autogen.sh index 219fb1b..3ee8482 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ #!/bin/sh -e autoreconf --install --symlink -./configure --prefix="/usr" $@ +./configure --prefix="/usr" "$@"