From b7dd644e59d937c5886b018b7f2ef81cbd367330 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 16 Jan 2008 04:33:23 +0000 Subject: Sven Joachim Add --lzma. --- make-dist | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'make-dist') diff --git a/make-dist b/make-dist index 26fb5b31daf..305112ed153 100755 --- a/make-dist +++ b/make-dist @@ -85,6 +85,10 @@ while [ $# -gt 0 ]; do "--bzip2") default_gzip="bzip2" ;; + ## Same with lzma. + "--lzma") + default_gzip="lzma" + ;; "--snapshot") clean_up=yes @@ -99,6 +103,7 @@ while [ $# -gt 0 ]; do echo " --bzip2 use bzip2 instead of gzip" echo " --clean-up delete staging directories when done" echo " --compress use compress instead of gzip" + echo " --lzma use lzma instead of gzip" echo " --newer=TIME don't include files older than TIME" echo " --no-check don't check for bad file names etc." echo " --no-update don't recompile or do analogous things" @@ -750,6 +755,7 @@ if [ "${make_tar}" = yes ]; then case "${default_gzip}" in bzip2) gzip_extension=.bz2 ;; compress* ) gzip_extension=.Z ;; + lzma) gzip_extension=.lzma ;; * ) gzip_extension=.gz ;; esac echo "Creating tar file" -- cgit v1.2.1