diff options
author | David Tardon <dtardon@redhat.com> | 2016-01-13 14:21:10 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-01-14 19:46:48 +0100 |
commit | 345135002ae030bd3cd3d4bde594c14affc860a2 (patch) | |
tree | 81a24302b59e73ec9eb606ccbf9e528013fe70e4 | |
parent | 6372080cd396a7e8608806a35a1be68d288b8fda (diff) |
move def. of liblangtag inc. path to configure
Change-Id: Idef3015bf7b7bb5e0d984ac0b0a2163172cacc17
-rw-r--r-- | RepositoryExternal.mk | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index fe614db34f09..24f40c0e6bbb 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -1043,7 +1043,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 2493e136990f..86192ee0b556 100644 --- a/configure.ac +++ b/configure.ac @@ -11803,6 +11803,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 |