summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw@src.gnome.org>2014-11-24 00:39:59 +0800
committerMichael Natterer <mitch@gimp.org>2014-11-23 18:17:15 +0100
commit4717b19118eb124a2d8d53497f5e8d587b6e4cc9 (patch)
treed7a16add1919717512dbf212c0482d449cc48464 /configure.ac
parenta854fa6edbcf9d1d75170befc2d2dea46f6bca85 (diff)
Bug 740582 - Not all shells support the += syntax
configure: support shells which do not recognize the += syntax.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 97d946af..2bbfc4e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -497,10 +497,10 @@ GLIB_PACKAGES="gobject-2.0 gmodule-2.0 gio-2.0"
# select platform-specific GIO
case "$os_win32" in
yes)
- GLIB_PACKAGES+=" gio-windows-2.0"
+ GLIB_PACKAGES="$GLIB_PACKAGES gio-windows-2.0"
;;
*)
- GLIB_PACKAGES+=" gio-unix-2.0"
+ GLIB_PACKAGES="$GLIB_PACKAGES gio-unix-2.0"
;;
esac