diff options
author | Bertrand Jacquin <beber@meleeweb.net> | 2009-05-01 22:28:39 +0200 |
---|---|---|
committer | Bertrand Jacquin <beber@meleeweb.net> | 2009-05-01 22:28:39 +0200 |
commit | 36329e5beaf0274d1c9edf68d2cde2956b4c5770 (patch) | |
tree | e477ae5c7b615d78a492b8cc3ac7dabb6119871c | |
parent | wdd: fix warnings (diff) | |
download | flxutils-36329e5beaf0274d1c9edf68d2cde2956b4c5770.tar.xz |
wdd: Fix warnings when builded with gcc-4.3 and without diet
(FORTIFY_SOURCE)
Diffstat (limited to '')
-rw-r--r-- | wd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wd/Makefile b/wd/Makefile index f355d00..6f1fa72 100644 --- a/wd/Makefile +++ b/wd/Makefile @@ -3,7 +3,7 @@ include ../include/rules.make CFLAGS+=-fomit-frame-pointer %: %.c - $(CC) $(LDFLAGS) $(CFLAGS) -W -Wall -o $@ $< + $(CC) $(LDFLAGS) $(CFLAGS) -W -Wall -U_FORTIFY_SOURCE -o $@ $< $(STRIP) -x --strip-unneeded -R .comment -R .note $@ $(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true -if [ -n "$(SSTRIP)" ]; then $(SSTRIP) $@ ; fi |