diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-02 12:12:09 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-02 12:12:09 +0000 |
commit | 030e4e8ebfa5915509f5f220eef8a1bf9d33b46c (patch) | |
tree | 8588e988470f8d4de1847f16df3f97e035e15968 /gcc/Makefile.in | |
parent | fe14c2ad5959b012dba20db91948698457e150ca (diff) | |
download | gcc-030e4e8ebfa5915509f5f220eef8a1bf9d33b46c.tar.gz |
* Makefile.in (WERROR_FLAGS): Renamed from WERROR.
(STRICT2_WARN): Use $(WERROR_FLAGS) instead of $(WERROR).
(STAGE2_FLAGS_TO_PASS): Likewise.
* config/i386/x-mingw32: Set WERROR_FLAGS instead of WERROR.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91634 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 9e4b67907bb..880e1c5dbc6 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -167,9 +167,9 @@ coverageexts = .{gcda,gcno} # -Wno-variadic-macros. LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes STRICT_WARN = @strict1_warn@ -WERROR = @WERROR@ +WERROR_FLAGS = @WERROR@ STRICT2_WARN = -pedantic -Wno-long-long -Wno-variadic-macros \ - -Wold-style-definition $(WERROR) + -Wold-style-definition $(WERROR_FLAGS) # This is set by --enable-checking. The idea is to catch forgotten # "extern" tags in header files. @@ -3643,7 +3643,7 @@ POSTSTAGE1_FLAGS_TO_PASS = \ STAGE2_FLAGS_TO_PASS = \ CFLAGS="$(BOOT_CFLAGS)" \ - WERROR="$(WERROR)" \ + WERROR="$(WERROR_FLAGS)" \ STAGEPROFILE_FLAGS_TO_PASS = \ CFLAGS="$(BOOT_CFLAGS) -fprofile-generate" |