[Libreoffice-commits] core.git: RepositoryExternal.mk

Tor Lillqvist tml at iki.fi
Wed Apr 24 05:14:42 PDT 2013


 RepositoryExternal.mk |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit e4c6fe5d41915560a0438c419577c91d8f866051
Author: Tor Lillqvist <tml at iki.fi>
Date:   Wed Apr 24 15:11:39 2013 +0300

    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

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 941554a..322e914 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
 


More information about the Libreoffice-commits mailing list