diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-08 00:09:09 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-08 00:09:09 +0000 |
commit | 6bc2f30fff05146317d82dc1fc430badfdd9a2f3 (patch) | |
tree | 86d1a51fd7530a9daa46bd2ac660a1c1324a92b8 /gcc/Makefile.in | |
parent | d723e6e5fe98e764094583033ba908d5f4b59826 (diff) | |
download | gcc-6bc2f30fff05146317d82dc1fc430badfdd9a2f3.tar.gz |
* Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
substitutions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33761 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 3f39207d0a4..cdd3ee5f3c3 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -77,7 +77,7 @@ TCFLAGS = CFLAGS = -g @stage1_warn_cflags@ BOOT_CFLAGS = -O2 $(CFLAGS) WARN_CFLAGS = -W -Wall -Wtraditional -pedantic -Wno-long-long -LOOSE_CFLAGS = `echo $(CFLAGS) | sed -e 's/-pedantic//' -e 's/-Wtraditional//'` +LOOSE_CFLAGS = `echo $(CFLAGS)|sed -e 's/-pedantic//g' -e 's/-Wtraditional//g'` # These exists to be overridden by the x-* and t-* files, respectively. X_CFLAGS = T_CFLAGS = |