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:
committed by
Giovanni Campagna
parent
35ee8fc2c6
commit
13b8b3c22c
+1
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user