summaryrefslogtreecommitdiff
path: root/Cmds
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-12-27 12:48:20 +0100
committerTobias Klauser <tklauser@distanz.ch>2015-12-27 12:50:26 +0100
commit881d25d78273f1f72deaff7ff4baf29e3a4c7136 (patch)
tree5724793c370e9e0f6604bd996b5f094833975abf /Cmds
parent9dc85a7180864a2e1ac8eb712aee144e834008de (diff)
build: Use busybox compatible gzip command line option
gzip from busybox does not understand the '--best' command line option. Use '-9' instead which is understood by all gzip flavours (checked with GNU, BSD and busybox). Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'Cmds')
-rw-r--r--Cmds2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cmds b/Cmds
index 67d34cf..ab0eda0 100644
--- a/Cmds
+++ b/Cmds
@@ -37,7 +37,7 @@ MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1)
RM = echo -e " RM\t$(1)" && rm -rf $(1)
RMDIR = echo -e " RM\t$(1)" && rmdir --ignore-fail-on-non-empty $(1) 2> /dev/null || true
-GZIP = gzip --best -c
+GZIP = gzip -9 -c
# Git related
GIT_LAST_TAG = git describe --abbrev=0 v$(VERSION_SHORT)^