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 27 28 29
|
From: Hilko Bengen <bengen@debian.org>
Date: Tue, 9 Feb 2016 23:21:11 +0100
Subject: Run gzip (inside of tar zcf) with -n
---
appliance/Makefile.am | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/appliance/Makefile.am b/appliance/Makefile.am
index eb26ecc..debeaef 100644
--- a/appliance/Makefile.am
+++ b/appliance/Makefile.am
@@ -55,13 +55,14 @@ superminfs_DATA = \
supermin.d/base.tar.gz supermin.d/packages: stamp-supermin
stamp-supermin: make.sh packagelist supermin.d/excludefiles
rm -f $@ supermin.d/base.tar.gz supermin.d/packages
- ./make.sh
+ GZIP=-n ./make.sh
$(MAKE) \
supermin.d/daemon.tar.gz \
supermin.d/excludefiles \
supermin.d/hostfiles \
supermin.d/init.tar.gz \
- supermin.d/udev-rules.tar.gz
+ supermin.d/udev-rules.tar.gz \
+ GZIP=-n
touch $@
clean-supermin-appliance:
|