aboutsummaryrefslogtreecommitdiffstats
path: root/main/attr/busybox-gzip.patch
blob: ebf12697077c3aef92002103fb21b681d9c01675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/doc/Makefile b/doc/Makefile
index c10ced6..524b5a2 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -28,7 +28,7 @@ default: $(SUBDIRS) CHANGES.gz
 include $(BUILDRULES)
 
 CHANGES.gz:
-	$(ZIP) --best -c < CHANGES > $@
+	$(ZIP) -c < CHANGES > $@
 
 install: default
 	$(SUBDIRS_MAKERULE)
diff --git a/include/buildmacros b/include/buildmacros
index 9e81bb8..b33e148 100644
--- a/include/buildmacros
+++ b/include/buildmacros
@@ -139,7 +139,7 @@ endif
 MAN_MAKERULE = \
 	@for f in *.[12345678] ""; do \
 		if test ! -z "$$f"; then \
-			$(ZIP) --best -c < $$f > $$f.gz; \
+			$(ZIP) -c < $$f > $$f.gz; \
 		fi; \
 	done