summaryrefslogtreecommitdiff
path: root/helpers/lh_source_tar
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/lh_source_tar')
-rwxr-xr-xhelpers/lh_source_tar8
1 files changed, 7 insertions, 1 deletions
diff --git a/helpers/lh_source_tar b/helpers/lh_source_tar
index ecd04ee..4e00db6 100755
--- a/helpers/lh_source_tar
+++ b/helpers/lh_source_tar
@@ -60,7 +60,13 @@ then
fi
# Create tarball
-tar cfz source.tar.gz source
+if gzip --help | grep -q '\-\-rsyncable'
+then
+ tar cf source.tar source
+ gzip --rsyncable --best source.tar
+else
+ tar cfz source.tar.gz source
+fi
# Creating stage file
Create_stagefile .stage/source_tar