From 902a58b463f6a59ab48ac0858610cec3ad74685f Mon Sep 17 00:00:00 2001 From: Stephen Warren Date: Fri, 23 Aug 2013 11:58:23 -0600 Subject: autogen.sh: allow spaces in configure arguments Using "$@" (rather than #@) quotes any arguments if required. This is useful if you want to run ./autogen.sh CFLAGS="-ggdb -O0". Signed-off-by: Stephen Warren Reviewed-by: Thierry Reding --- autogen.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index e925023..530783b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,4 @@ #!/bin/sh -e autoreconf --install --symlink -./configure $@ - +./configure "$@" -- cgit v1.2.1