diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-23 22:30:01 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-23 22:30:01 +0000 |
commit | 82598b814c8df1598d95639d1bc652a0cf466aba (patch) | |
tree | fd21e0575906d2b1bbe6304d0c56d909d006211f /fixincludes | |
parent | 9b691456bb847a7343b891dba9628e3b8d460727 (diff) | |
download | gcc-82598b814c8df1598d95639d1bc652a0cf466aba.tar.gz |
Fix problem found by CFLAGS=-fmudflap build.
* Makefile.in (full-stamp, test-stamp, $(AF)): Add $(CFLAGS) to link.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95475 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/ChangeLog | 4 | ||||
-rw-r--r-- | fixincludes/Makefile.in | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog index 9262818e9fd..03b55917f10 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 b60665bc4bf..1383ef61b61 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 |