summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-01-13 14:21:10 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-01-21 08:15:40 +0000
commit17ee83f108c4e7c00218ea09dbbffdf9989da0ae (patch)
treeb14c64871e3d145d1b2b339410ea540a3a7b0c7f
parent936da92dd854a1d5c16e564fc62b14bee0214fe9 (diff)
move def. of liblangtag inc. path to configure
Change-Id: Idef3015bf7b7bb5e0d984ac0b0a2163172cacc17 (cherry picked from commit 345135002ae030bd3cd3d4bde594c14affc860a2) Reviewed-on: https://gerrit.libreoffice.org/21543 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r--RepositoryExternal.mk2
-rw-r--r--configure.ac1
2 files changed, 2 insertions, 1 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 2a80542f064a..836196120392 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -1069,7 +1069,7 @@ $(eval $(call gb_Helper_register_packages_for_install,ooo,\
define gb_LinkTarget__use_liblangtag
$(call gb_LinkTarget_use_unpacked,$(1),langtag)
$(call gb_LinkTarget_set_include,$(1),\
- -I$(call gb_UnpackedTarball_get_dir,langtag) \
+ $(LIBLANGTAG_CFLAGS) \
$$(INCLUDE) \
)
$(call gb_LinkTarget_add_libs,$(1),$(LIBLANGTAG_LIBS))
diff --git a/configure.ac b/configure.ac
index cfef065fc93e..974276b58c6f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11853,6 +11853,7 @@ if test "$enable_liblangtag" = "yes" -o \
SYSTEM_LIBLANGTAG=
AC_MSG_RESULT([no])
BUILD_TYPE="$BUILD_TYPE LIBLANGTAG"
+ LIBLANGTAG_CFLAGS="-I${WORKDIR}/UnpackedTarball/langtag"
if test "$COM" = "MSC"; then
LIBLANGTAG_LIBS="${WORKDIR}/UnpackedTarball/langtag/liblangtag/.libs/liblangtag.lib"
else