diff options
author | Glenn Morris <rgm@gnu.org> | 2008-01-16 04:33:32 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-01-16 04:33:32 +0000 |
commit | ed398055862ab898d8dc3037a537af94ea69910b (patch) | |
tree | 5f8b83a464407212ac0af5c870cfb04f62fe92b6 /make-dist | |
parent | 309c894f0a7bae1eb974d0c45552cb53e34c92d6 (diff) | |
download | emacs-ed398055862ab898d8dc3037a537af94ea69910b.tar.gz |
Sven Joachim <svenjoac at gmx.de>
Add --lzma.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 6 |
1 files changed, 6 insertions, 0 deletions
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" |