aboutsummaryrefslogtreecommitdiff
path: root/fixincludes
diff options
context:
space:
mode:
authorJames E Wilson <wilson@specifixinc.com>2005-02-23 22:30:01 +0000
committerJim Wilson <wilson@gcc.gnu.org>2005-02-23 14:30:01 -0800
commit27f0dff4a2ddec42768683c8a79dbff0bcf6dec5 (patch)
treefd21e0575906d2b1bbe6304d0c56d909d006211f /fixincludes
parentc5625c0c5d6a44589b01f213282fe0ecfe3cd80b (diff)
downloadgcc-27f0dff4a2ddec42768683c8a79dbff0bcf6dec5.zip
gcc-27f0dff4a2ddec42768683c8a79dbff0bcf6dec5.tar.gz
gcc-27f0dff4a2ddec42768683c8a79dbff0bcf6dec5.tar.bz2
Fix problem found by CFLAGS=-fmudflap build.
* Makefile.in (full-stamp, test-stamp, $(AF)): Add $(CFLAGS) to link. From-SVN: r95475
Diffstat (limited to 'fixincludes')
-rw-r--r--fixincludes/ChangeLog4
-rw-r--r--fixincludes/Makefile.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog
index 9262818..03b5591 100644
--- a/fixincludes/ChangeLog
+++ b/fixincludes/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-23 James E Wilson <wilson@specifixinc.com>
+
+ * Makefile.in (full-stamp, test-stamp, $(AF)): Add $(CFLAGS) to link.
+
2004-12-13 Andrew Pinski <pinskia@physics.uc.edu>
PR 18458
diff --git a/fixincludes/Makefile.in b/fixincludes/Makefile.in
index b60665b..1383ef6 100644
--- a/fixincludes/Makefile.in
+++ b/fixincludes/Makefile.in
@@ -102,15 +102,15 @@ oneprocess : full-stamp
twoprocess : test-stamp $(AF)
full-stamp : $(ALLOBJ) $(LIBIBERTY)
- $(CC) $(LDFLAGS) -o $(FI) $(ALLOBJ) $(LIBIBERTY)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(FI) $(ALLOBJ) $(LIBIBERTY)
$(STAMP) $@
test-stamp : $(TESTOBJ) $(LIBIBERTY)
- $(CC) $(LDFLAGS) -o $(FI) $(TESTOBJ) $(LIBIBERTY)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(FI) $(TESTOBJ) $(LIBIBERTY)
$(STAMP) $@
$(AF): $(FIXOBJ) $(LIBIBERTY)
- $(CC) $(LDFLAGS) -o $@ $(FIXOBJ) $(LIBIBERTY)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(FIXOBJ) $(LIBIBERTY)
$(ALLOBJ) : $(HDR)
fixincl.o : fixincl.c $(srcdir)/fixincl.x