diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-08-31 10:11:32 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-09-07 09:10:35 -0400 |
commit | c8b7e9822257938e9b1d1c6f7d93d085b06d5e96 (patch) | |
tree | 6c77c83b27e026a01592f3e703dffce9f5735d17 /RepositoryExternal.mk | |
parent | 0df51f70be7eae0caaea24a24e8db69de189bb16 (diff) |
Let's use static archive instead of shared object for liborcus.
Change-Id: I5e33dac1025b1b3e5f49baf67c80da37d8e2ca5d
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index d7d4a189f95e..7a1289eddcb7 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -1869,10 +1869,13 @@ endef else # !SYSTEM_LIBORCUS -define gb_LinkTarget__use_orcus +$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \ + orcus-0.2 \ +)) -$(call gb_LinkTarget_add_libs,$(1),\ - -lorcus-0.2 \ +define gb_LinkTarget__use_orcus +$(call gb_LinkTarget_use_static_libraries,$(1),\ + orcus-0.2 \ ) endef |