From e4c6fe5d41915560a0438c419577c91d8f866051 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 24 Apr 2013 15:11:39 +0300 Subject: It's gb_UnoApi_get_target that we want here Fixes cross-compilation: Running (the BUILD platform) saxparser in i18npool failed because there was no BUILD udkapi.rdb. No gb_UnoApi_get_target_for_build exists, and anyway, it would not be needed. (Not here at least.) Change-Id: I7bfe34cf339d8a847b76ab29669acc8d458d54e3 --- RepositoryExternal.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'RepositoryExternal.mk') diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index 941554afee22..322e9140997b 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -2810,7 +2810,7 @@ $(call gb_Executable_add_runtime_dependencies,climaker,\ $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \ $(call gb_Package_get_target_for_build,cppuhelper_unorc) \ $(call gb_Rdb_get_outdir_target_for_build,ure/services) \ - $(call gb_UnoApi_get_target_for_build,udkapi) \ + $(call gb_UnoApi_get_target,udkapi) \ ) endef @@ -2847,7 +2847,7 @@ $(call gb_Executable_add_runtime_dependencies,saxparser,\ $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \ $(call gb_Package_get_target_for_build,cppuhelper_unorc) \ $(call gb_Rdb_get_outdir_target_for_build,ure/services) \ - $(call gb_UnoApi_get_target_for_build,udkapi) \ + $(call gb_UnoApi_get_target,udkapi) \ ) endef @@ -2860,7 +2860,7 @@ $(call gb_Executable_add_runtime_dependencies,uno,\ $(call gb_Library_get_target,$(gb_CPPU_ENV)_uno) \ $(call gb_Package_get_target_for_build,cppuhelper_unorc) \ $(call gb_Rdb_get_outdir_target_for_build,ure/services) \ - $(call gb_UnoApi_get_target_for_build,udkapi) \ + $(call gb_UnoApi_get_target,udkapi) \ ) endef -- cgit