[git commit] buildsys: fix IS_IN_lib* for .s

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Mon Mar 23 23:11:41 UTC 2015


commit: http://git.uclibc.org/uClibc/commit/?id=c846358a61434e6cb9b1f73bc35df0e5404f52d2
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 Makerules |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/Makerules b/Makerules
index a60338a..fd6bb19 100644
--- a/Makerules
+++ b/Makerules
@@ -29,7 +29,9 @@ objs: all_objs
 # apply unconditional per-directory flags
 define add_IS_IN_lib
 ifneq ($(strip $(2)),)
-__add_IS_IN_lib := $(2) $(2:.o=.i) $(2:.os=.i) $(2:.oS=.i)
+__add_IS_IN_lib := $(2)
+__add_IS_IN_lib += $(2:.o=.i) $(2:.os=.i) $(2:.oS=.i)
+__add_IS_IN_lib += $(2:.o=.s) $(2:.os=.s) $(2:.oS=.s)
 $$(__add_IS_IN_lib): CFLAGS-for-library-members:=$(CFLAGS-$(1)) -DIN_LIB=$(word 1,$(subst /, ,$(1)))
 endif
 endef


More information about the uClibc-cvs mailing list