build: Workaround quoting issues in configure script
Default value of BROWSER_PLUGIN_DIR variable contains special symbols. Thus quoting and inlining it in parameter expansion is not portable. In particular it does not work in dash. Replace ${a:-b} parameter expansion with conditional statement. https://bugzilla.gnome.org/show_bug.cgi?id=739241
This commit is contained in:
parent
e402ed1fe4
commit
b05ab0eaeb
@ -232,7 +232,9 @@ esac
|
||||
AM_CFLAGS="$AM_CFLAGS $WARN_CFLAGS"
|
||||
AC_SUBST(AM_CFLAGS)
|
||||
|
||||
BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}"
|
||||
if test -z "${BROWSER_PLUGIN_DIR}"; then
|
||||
BROWSER_PLUGIN_DIR="\${libdir}/mozilla/plugins"
|
||||
fi
|
||||
AC_ARG_VAR([BROWSER_PLUGIN_DIR],[Where to install the plugin to])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
|
Loading…
Reference in New Issue
Block a user