From 3aa3fc443c005ae98ac4ca3b5a4df5ff5c44222f Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Sat, 7 Jul 2012 19:54:01 +0300 Subject: [PATCH] antimake: Fix DoEmbed to use two target lists properly The EXTRA list was added wrongly and with extra ',' which hided the problem. --- mk/antimake.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mk/antimake.mk b/mk/antimake.mk index 3caca44..7e80e31 100755 --- a/mk/antimake.mk +++ b/mk/antimake.mk @@ -863,8 +863,7 @@ endef DoEmbed = $(trace1)$(strip \ $(if $(wildcard $(am_srcdir)/$(1)/Makefile.am), \ $(eval include $(am_srcdir)/$(1)/Makefile.am $(NewLine)) \ - $(eval $(call EmbedProcess,$(1),$(call CleanName,$(1)),$(AM_NONEXTRA_TLISTS))), \ - $(eval $(call EmbedProcess,$(1),$(call CleanName,$(1)),$(AM_EXTRA_TLISTS))), \ + $(eval $(call EmbedProcess,$(1),$(call CleanName,$(1)),$(AM_NONEXTRA_TLISTS) $(AM_EXTRA_TLISTS))), \ $(error $(SUBLOC)/Makefile failure: $(call JoinPath,$(SUBLOC),$(1)/Makefile.am) not found.))) ## -- 2.39.5