diff options
author | Daniel Baumann <daniel@debian.org> | 2009-09-11 09:39:13 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:46 +0100 |
commit | ec83843d6e5e7b1ca8473cf7f9b05fdfe10d220f (patch) | |
tree | 698870045e2c5a468166df30694ec67b6522462e /helpers/lh_source_debian-live | |
parent | a8e71bdb038388640eeb2276f6697546aded3505 (diff) | |
download | live-build-ec83843d6e5e7b1ca8473cf7f9b05fdfe10d220f.zip live-build-ec83843d6e5e7b1ca8473cf7f9b05fdfe10d220f.tar.gz |
Allowing to overwrite default gzip options through config switch or option.
Diffstat (limited to 'helpers/lh_source_debian-live')
-rwxr-xr-x | helpers/lh_source_debian-live | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/helpers/lh_source_debian-live b/helpers/lh_source_debian-live index 03b3992..809794c 100755 --- a/helpers/lh_source_debian-live +++ b/helpers/lh_source_debian-live @@ -62,13 +62,8 @@ cd source SUFFIX="$(date +%Y%m%d.%s)" -if gzip --help | grep -qs '\-\-rsyncable' -then - tar cf debian-live-config_${SUFFIX}.tar debian-live - gzip --rsyncable --best debian-live-config_${SUFFIX}.tar -else - tar cfz debian-live-config_${SUFFIX}.tar.gz debian-live -fi +tar cf debian-live-config_${SUFFIX}.tar debian-live +gzip ${GZIP_OPTIONS} debian-live-config_${SUFFIX}.tar cd "${OLDPWD}" |