Browse Source

Bugfix: Properly quote configure options

Luke Dashjr 13 years ago
parent
commit
93e814e0ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      autogen.sh

+ 1 - 1
autogen.sh

@@ -16,7 +16,7 @@ if test -z "$NOCONFIGURE" ; then
 	cd "${bs_dir}" &> /dev/null
 	test "$?" = "0" || e=1
 	test "$cwd" != "$bs_dir" && cd "$bs_dir" &> /dev/null
-	./configure $@
+	./configure "$@"
 	test "$e" = "1" && exit 1
 	cd "$cwd"
 fi