mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
27 lines
638 B
Diff
27 lines
638 B
Diff
diff --git a/doc/Makefile b/doc/Makefile
|
|
index a08e403..d739781 100644
|
|
--- a/doc/Makefile
|
|
+++ b/doc/Makefile
|
|
@@ -28,7 +28,7 @@ default: CHANGES.gz
|
|
include $(BUILDRULES)
|
|
|
|
CHANGES.gz:
|
|
- $(ZIP) --best -c < CHANGES > $@
|
|
+ $(ZIP) -c < CHANGES > $@
|
|
|
|
install: default
|
|
$(INSTALL) -m 755 -d $(PKG_DOC_DIR)
|
|
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
|
|
|