diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-16 18:02:01 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-16 18:02:01 +0000 |
| commit | eb5d6e39943eaf26ab2db516c5d503308c693b2c (patch) | |
| tree | 024d90a9321d04a5d22a09f74ac510d5d8433946 | |
| parent | 684b9d798479712b7ffc8094cd1867a16b984dbc (diff) | |
| download | ppe42-gcc-eb5d6e39943eaf26ab2db516c5d503308c693b2c.tar.gz ppe42-gcc-eb5d6e39943eaf26ab2db516c5d503308c693b2c.zip | |
* gcc.c (cpp_options): Added `*' to specs for -MF, -MQ, and -MT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39072 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae77318e9c0..3f0804f2ce7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-01-16 Tom Tromey <tromey@redhat.com> + + * gcc.c (cpp_options): Added `*' to specs for -MF, -MQ, and -MT. + 2001-01-16 Richard Henderson <rth@redhat.com> * config/i386/i386.h: Fix comment typo. diff --git a/gcc/gcc.c b/gcc/gcc.c index 34a5cfeeb9f..f66fc828475 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -591,7 +591,7 @@ static const char *cpp_options = %{std*} %{nostdinc*}\ %{C} %{v} %{I*} %{P} %{$} %I\ %{MD:-M -MF %{!o: %b.d}%{o*:%.d%*}} %{MMD:-MM -MF %{!o: %b.d}%{o*:%.d%*}}\ - %{M} %{MM} %{MF} %{MG} %{MP} %{MQ} %{MT} %{M|MD|MM|MMD:%{o*:-MQ %*}}\ + %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*} %{M|MD|MM|MMD:%{o*:-MQ %*}}\ %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\ %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\ %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:%{!O0:-D__OPTIMIZE__}}\ |

