]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix problem found by CFLAGS=-fmudflap build.
authorJames E Wilson <wilson@specifixinc.com>
Wed, 23 Feb 2005 22:30:01 +0000 (22:30 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 23 Feb 2005 22:30:01 +0000 (14:30 -0800)
* Makefile.in (full-stamp, test-stamp, $(AF)): Add $(CFLAGS) to link.

From-SVN: r95475

fixincludes/ChangeLog
fixincludes/Makefile.in

index 9262818e9fdd1bbcfbdd073a98d9b808aa66c2c9..03b55917f102c01fc6aa0e1272cb0610b6710b9b 100644 (file)
@@ -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
index b60665bc4bf898b9cf6110f2f391d3d475847125..1383ef61b61a76916c647e101287037536480b8a 100644 (file)
@@ -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