build: Properly quote $enable_extensions

Otherwise test will complain if more then one extension in enabled, i.e.
when we have a space in the configure argument.

https://bugzilla.gnome.org/show_bug.cgi?id=676446
This commit is contained in:
Michael Biebl
2012-05-21 00:10:16 +02:00
committed by Giovanni Campagna
parent 35ee8fc2c6
commit 13b8b3c22c
+1 -1
View File
@@ -40,7 +40,7 @@ AC_ARG_ENABLE([extensions],
[],
[enable_extensions=$DEFAULT_EXTENSIONS]
)
if test x$enable_extensions = xall; then
if test x"$enable_extensions" = xall; then
enable_extensions="$ALL_EXTENSIONS"
fi