From f7ffeb91cd6622472b425f8fa12c577c582ed16c Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 22 Sep 2005 07:07:42 +0000 Subject: [PATCH] * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command. Reported by Alexandre Oliva . --- ChangeLog | 5 +++++ Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ad4cde07f90..3b02a19374f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-22 Roland McGrath + + * Makefile ($(objpfx)c++-types-check.out): Use $<, not $^, in command. + Reported by Alexandre Oliva . + 2005-09-20 Jakub Jelinek * nscd/dbg_log.c (init_logfile): Use fopen64 rather than fopen. diff --git a/Makefile b/Makefile index 4535ab40354..f2d0b1bed0b 100644 --- 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' -- 2.39.5