Commit 4cddd751 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not attempt to run "--cflags" and "--idlflags" which are non-existant commands

parent e3078ba3
...@@ -4160,10 +4160,12 @@ dnl Not necessarily in ${PATH} ...@@ -4160,10 +4160,12 @@ dnl Not necessarily in ${PATH}
if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
XPIDL="/usr/lib/mozilla/xpidl" XPIDL="/usr/lib/mozilla/xpidl"
fi fi
if test -z "${XPIDL_INCL}"; then AS_IF([test "${MOZILLA_CONFIG}"], [
XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \ if test -z "${XPIDL_INCL}"; then
`${MOZILLA_CONFIG} --idlflags plugin xpcom java` " XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
fi `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
fi
])
AM_CONDITIONAL(BUILD_MOZILLA,${mozilla}) AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
dnl dnl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment