mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 666424: Don't use GLIB_CONFIG if if has the value 'no'. r=khuey
This commit is contained in:
parent
f53a61be9d
commit
1b81109eda
@ -8451,7 +8451,10 @@ if test -z "${GLIB_CFLAGS}" -o -z "${GLIB_LIBS}" ; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -z "${GLIB_GMODULE_LIBS}" -a -n "${GLIB_CONFIG}"; then
|
||||
if test -z "${GLIB_GMODULE_LIBS}" \
|
||||
-a -n "${GLIB_CONFIG}"\
|
||||
-a "${GLIB_CONFIG}" != no\
|
||||
; then
|
||||
GLIB_GMODULE_LIBS=`$GLIB_CONFIG gmodule --libs`
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user