diff options
author | Andreas Jaeger <aj@suse.de> | 2003-11-04 06:34:14 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-11-04 06:34:14 +0100 |
commit | 7807fcd903c2a016ee64a6ac6ce66443e801791f (patch) | |
tree | 5f4bb2837a3c0bc74ee4c8c0e28d0ffb753b8ce0 | |
parent | 5e93f39f64234c07447aca0d466c8ae989306669 (diff) | |
download | gcc-7807fcd903c2a016ee64a6ac6ce66443e801791f.zip gcc-7807fcd903c2a016ee64a6ac6ce66443e801791f.tar.gz gcc-7807fcd903c2a016ee64a6ac6ce66443e801791f.tar.bz2 |
Makefile.in (GCC_CFLAGS): Remove @WERROR@ again.
* Makefile.in (GCC_CFLAGS): Remove @WERROR@ again.
Change previous ChangeLog entry to point to me as asked for by Kaveh.
From-SVN: r73246
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f6b93a7..c3af769 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-11-03 Andreas Jaeger <aj@suse.de> + + * Makefile.in (GCC_CFLAGS): Remove @WERROR@ again. + 2003-11-03 Kelley Cook <kcook@gcc.gnu.org> * Makefile.in (cpp.dvi): New target split from cpp.info. @@ -165,7 +169,7 @@ prototypes. (SBSS_SECTION_FUNCTION): Likewise. -2003-11-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> +2003-11-01 Andreas Jaeger <aj@suse.de> * Makefile.in (GCC_CFLAGS): Add @WERROR@ for target files. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 6278333..a7daa2b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -289,7 +289,7 @@ GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isyste # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET. # It omits XCFLAGS, and specifies -B./. # It also specifies -isystem ./include to find, e.g., stddef.h. -GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) @WERROR@ $($@-warn) -isystem ./include $(TCFLAGS) +GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $($@-warn) -isystem ./include $(TCFLAGS) # --------------------------------------------------- # Programs which produce files for the target machine |