diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-21 19:41:57 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-21 19:41:57 +0000 |
commit | 17ab889ed12ac34f38d602998a55470645814324 (patch) | |
tree | 84dd9304692d8436441734b7b1b8432b0738db4e /libc/sysdeps/linux/common/Makefile | |
parent | d804ea044c6bc567cb078bfa63e69bc3906f0fc6 (diff) |
Fix "subst -g,," problem for SAFECFLAGS.
Diffstat (limited to 'libc/sysdeps/linux/common/Makefile')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 3135172c0..5323df366 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -44,7 +44,7 @@ SAFECFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS) $(CPU_CFLAGS) -fno-built # on SH4 addition of -g kills the initfini stuff, removed here for all # platforms as I suspect no one want initfini compiled -g :-) - davidm # -SAFECFLAGS := $(subst -g,,$(SAFECFLAGS)) +SAFECFLAGS := $(filter-out -g,$(SAFECFLAGS)) ifeq ($(strip $(DOPIC)),y) SAFECFLAGS+=$(PICFLAG) endif |