summaryrefslogtreecommitdiffstats
path: root/solenv/gbuild/Library.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-05-07 16:25:04 +0200
committerMichael Stahl <mstahl@redhat.com>2012-05-08 11:27:48 +0200
commit0cd589cb5f57242b320530920db33b720110d619 (patch)
tree7331e6505fabfa2c2857eae38d69a2d77b752770 /solenv/gbuild/Library.mk
parentgbuild: refactor the selective symbols support (diff)
downloadcore-0cd589cb5f57242b320530920db33b720110d619.tar.gz
core-0cd589cb5f57242b320530920db33b720110d619.zip
gbuild: refactor selective symbols again:
The previous commit works but results in a ~0.4 second slowdown on tail_build, which is completely unacceptable; seems that at the cost of another ugly global variable in Module.mk we can get the performance back and then some, so refactor this again...
Diffstat (limited to 'solenv/gbuild/Library.mk')
-rw-r--r--solenv/gbuild/Library.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/Library.mk b/solenv/gbuild/Library.mk
index 3a1e3d99b6a4..2c74d6e70d2b 100644
--- a/solenv/gbuild/Library.mk
+++ b/solenv/gbuild/Library.mk
@@ -75,7 +75,7 @@ $(call gb_Library__get_final_target,$(1)) : $(call gb_Library_get_target,$(1))
$(call gb_Library_get_target,$(1)) : $(call gb_LinkTarget_get_target,$(2))
$(call gb_Library_get_clean_target,$(1)) : $(call gb_LinkTarget_get_clean_target,$(2))
$(call gb_Library_Library_platform,$(1),$(2),$(gb_Library_DLLDIR)/$(call gb_Library_get_dllname,$(1)))
-$$(eval $$(call gb_Module_register_target,$(call gb_Library__get_final_target,$(1)),$(call gb_Library_get_clean_target,$(1)),Library_$(1)))
+$$(eval $$(call gb_Module_register_target,$(call gb_Library__get_final_target,$(1)),$(call gb_Library_get_clean_target,$(1))))
$(call gb_Deliver_add_deliverable,$(call gb_Library_get_target,$(1)),$(call gb_LinkTarget_get_target,$(2)),$(1))
endef