summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2013-08-23 11:58:23 -0600
committerStephen Warren <swarren@nvidia.com>2013-08-26 14:02:57 -0600
commit902a58b463f6a59ab48ac0858610cec3ad74685f (patch)
tree183d5b25f57e91135f210195ea3006f418642e26
parent14574161a670d0cc2f1eff0aa337106a1b7391af (diff)
downloadnvidia-cbootimage-902a58b463f6a59ab48ac0858610cec3ad74685f.tar.gz
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 <swarren@nvidia.com> Reviewed-by: Thierry Reding <treding@nvidia.com>
-rwxr-xr-xautogen.sh3
1 files changed, 1 insertions, 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 "$@"