diff options
author | Roland McGrath <roland@gnu.org> | 2005-09-22 07:07:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-09-22 07:07:42 +0000 |
commit | f7ffeb91cd6622472b425f8fa12c577c582ed16c (patch) | |
tree | cc50b71dc987c6566f8a8d10a2ec5b29ce58b7a5 /Makefile | |
parent | a8d131a717d14bd359d730b42205f304b58ea27a (diff) | |
download | glibc-f7ffeb91cd6622472b425f8fa12c577c582ed16c.tar.gz |
* Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
Reported by Alexandre Oliva <aoliva@redhat.com>.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -242,7 +242,7 @@ check-data := $(firstword $(wildcard \ scripts/data/c++-types-$M-$(config-os).data))) ifneq (,$(check-data)) $(objpfx)c++-types-check.out: $(check-data) scripts/check-c++-types.sh - scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99 -Wstrict-prototypes,$(CFLAGS)) $(CPPFLAGS) > $@ + scripts/check-c++-types.sh $< $(CXX) $(filter-out -std=gnu99 -Wstrict-prototypes,$(CFLAGS)) $(CPPFLAGS) > $@ else $(objpfx)c++-types-check.out: @echo 'WARNING C++ tests not run; create a c++-types-XXX file' |