aboutsummaryrefslogtreecommitdiff
path: root/mktmp
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2006-07-16 14:53:46 +0200
committerWilly Tarreau <willy@wtap.(none)>2006-07-26 11:56:32 +0200
commit1c0a1c234546c2bb13b88bbd930e773d78f44cbd (patch)
tree31d284518080e0d486b9688c223940ef16f0ce18 /mktmp
parent[RELEASE] flxutils-0.1.27 (diff)
downloadflxutils-1c0a1c234546c2bb13b88bbd930e773d78f44cbd.tar.xz
[RELEASE] flxutils-0.1.28v0.1.28
Diffstat (limited to 'mktmp')
-rw-r--r--mktmp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mktmp/Makefile b/mktmp/Makefile
index e4e9ccc..a430169 100644
--- a/mktmp/Makefile
+++ b/mktmp/Makefile
@@ -4,6 +4,6 @@ include ../include/rules.make
%: %.c
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
- strip -R .comment -R .note $@
- objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true
+ $(STRIP) -x --strip-unneeded -R .comment -R .note $@
+ $(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true
sstrip $@