aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/make.c b/make.c
index 761a1e5..6fdeee5 100644
--- a/make.c
+++ b/make.c
@@ -138,7 +138,9 @@ usage:
snprintf(mandir, sizeof(mandir), "%s/%s", prefix, "share/man/man1");
if (binexists("strip")) {
- strspushl(&cmd, "strip", "-s", "grab", "git-grab");
+ strspushl(&cmd, "strip", "grab");
+ EXEC(cmd);
+ strspushl(&cmd, "strip", "git-grab");
EXEC(cmd);
}