diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 20:18:52 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 20:18:52 +0000 |
commit | 7b2b12d51bd19095edd58a7fd98ed5128e64177f (patch) | |
tree | 1dfb89b65fe8b1b7e4fbdeeaf9a7749c3a7ce926 /newlib/Makefile.in | |
parent | b807c4ad010e5b6b0b970c3291f74c852af8ac1e (diff) | |
download | cygnal-7b2b12d51bd19095edd58a7fd98ed5128e64177f.tar.gz cygnal-7b2b12d51bd19095edd58a7fd98ed5128e64177f.tar.bz2 cygnal-7b2b12d51bd19095edd58a7fd98ed5128e64177f.zip |
2002-04-26 Jeff Johnston <jjohnstn@redhat.com>
* configure.in (CC_FOR_NEWLIB): New variable that
bases on $(CC) and adds targ-include and libc/include as
-isystem directives if they are not already part of $(CC).
* Makefile.am (AM_MAKEFLAGS): Change setting of CC to equal
$(CC_FOR_NEWLIB).
* configure: Regenerated.
* Makefile.in: Ditto.
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r-- | newlib/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in index f8b528a50..7314634ee 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -68,6 +68,7 @@ AS = @AS@ AWK = @AWK@ CC = @CC@ CC_FOR_BUILD = @CC_FOR_BUILD@ +CC_FOR_NEWLIB = @CC_FOR_NEWLIB@ CPP = @CPP@ CRT0 = @CRT0@ CRT0_DIR = @CRT0_DIR@ @@ -141,7 +142,7 @@ AM_MAKEFLAGS = \ "tooldir=$(tooldir)" \ "AR=$(AR)" \ "AS=$(AS)" \ - "CC=$(CC)" \ + "CC=$(CC_FOR_NEWLIB)" \ "LD=$(LD)" \ "LIBCFLAGS=$(LIBCFLAGS)" \ "NM=$(NM)" \ |