diff options
author | Bertrand Jacquin <beber@meleeweb.net> | 2009-05-01 17:09:18 +0200 |
---|---|---|
committer | Bertrand Jacquin <beber@meleeweb.net> | 2009-05-01 17:09:18 +0200 |
commit | d0f7cc58ed17d05666201188c7d078d98a5f2655 (patch) | |
tree | 0a863d0705bfaa230ba58abefbe00d2cc5e745cc | |
parent | flx: Fix signedness warnings (diff) | |
download | flxutils-d0f7cc58ed17d05666201188c7d078d98a5f2655.tar.xz |
remount: sstrip is not available everywhere
-rw-r--r-- | remount/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remount/Makefile b/remount/Makefile index 71633d5..5aa2491 100644 --- a/remount/Makefile +++ b/remount/Makefile @@ -9,4 +9,4 @@ remountw : remountr $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< $(STRIP) -x --strip-unneeded -R .comment -R .note $@ $(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true - sstrip $@ + -if [ -n "$(SSTRIP)" ]; then $(SSTRIP) $@ ; fi |