Kaydet (Commit) da8a1f28 authored tarafından Luboš Luňák's avatar Luboš Luňák

do not output random 'true' in verbose build

It's not necessary anyway from what I can tell.

Change-Id: Idb4699f29eb1bba32197667c9a6785e653dd8382
üst 52b71a2b
......@@ -449,7 +449,7 @@ endef
# Put this pattern rule here so it overrides the one below.
# (this is rather ugly: because of % the functions cannot be used)
$(call gb_LinkTarget_get_target,Library/%.exports) : $(gb_Library_OUTDIRLOCATION)/%
$(if $(wildcard $@),true,mkdir -p $(dir $@) && touch $@)
$(if $(wildcard $@),,mkdir -p $(dir $@) && touch $@)
$(call gb_LinkTarget_get_target,%) : $(call gb_LinkTarget_get_headers_target,%) $(gb_Helper_MISCDUMMY)
$(if $(filter $*,$(foreach lib,$(gb_MERGEDLIBS) $(gb_URELIBS),$(call gb_Library_get_linktargetname,$(lib)))),\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment