1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Remove GNU Make-specific function call.

* libguile/Makefile.am (c-tokenize.$(OBJEXT)): Remove use of GNU Make's
  `filter-out' function.
This commit is contained in:
Ludovic Courtès 2009-12-15 00:59:14 +01:00
parent f65e0168d5
commit 4ea57d5b48

View file

@ -84,7 +84,7 @@ c-tokenize.$(OBJEXT): c-tokenize.c
if [ "$(cross_compiling)" = "yes" ]; then \
$(CC_FOR_BUILD) $(DEFS) $(AM_CPPFLAGS) -c -o $@ $<; \
else \
$(filter-out -Werror,$(COMPILE)) -c -o $@ $<; \
$(COMPILE) -c -o $@ $<; \
fi
## Override default rule; this should run on BUILD host.