]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
authorRoland McGrath <roland@gnu.org>
Thu, 22 Sep 2005 07:07:42 +0000 (07:07 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 22 Sep 2005 07:07:42 +0000 (07:07 +0000)
Reported by Alexandre Oliva <aoliva@redhat.com>.

ChangeLog
Makefile

index ad4cde07f90e131c4e2827ccc9f2f8c574bb7df6..3b02a19374f6d80fa82c54f2a8d596425a3a9e79 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-22  Roland McGrath  <roland@redhat.com>
+
+       * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command.
+       Reported by Alexandre Oliva <aoliva@redhat.com>.
+
 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
 
        * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen.
index 4535ab40354d05eaf297d8bf08631bb07c36b7d0..f2d0b1bed0bad9e91e822e95c3c6f2700bbfc51d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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'