From e3abec3f07f2a710bfce66f77b33f494e2aa4972 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 11 Feb 2014 15:57:18 +0100 Subject: fdo#74825: fix missing lcms2/libxslt/curl in installation sets The assumption that all configure variables had been normalized to TRUE/ turned out not to hold; convert a bit more in that direction. (regression from 4af38b099c741c3676aefeb20c515913aaeed666) Change-Id: I2127c515e8a833a07c9b26ed9d693ce5a1853fe4 --- m4/libo_externals.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'm4/libo_externals.m4') diff --git a/m4/libo_externals.m4 b/m4/libo_externals.m4 index c17292d93f49..3fe9fce18648 100644 --- a/m4/libo_externals.m4 +++ b/m4/libo_externals.m4 @@ -14,12 +14,12 @@ AC_ARG_WITH(system-$1, AC_MSG_CHECKING([which $1 to use]) if test "$with_system_$1" = "yes"; then AC_MSG_RESULT([external]) - SYSTEM_$2=YES + SYSTEM_$2=TRUE PKG_CHECK_MODULES([$2], [$3]) $2_CFLAGS=$(printf '%s' "${$2_CFLAGS}" | sed -e "s/-I/${ISYSTEM?}/g") else AC_MSG_RESULT([internal]) - SYSTEM_$2=NO + SYSTEM_$2= $2_CFLAGS=$4 $2_LIBS=$5 BUILD_TYPE="$BUILD_TYPE $2" -- cgit