From 881d25d78273f1f72deaff7ff4baf29e3a4c7136 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Dec 2015 12:48:20 +0100 Subject: 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 --- Cmds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cmds') 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)^ -- cgit v1.2.3-54-g00ecf