aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist6
1 files changed, 0 insertions, 6 deletions
diff --git a/make-dist b/make-dist
index a6410421b49..283defe8a7d 100755
--- a/make-dist
+++ b/make-dist
@@ -83,10 +83,6 @@ while [ $# -gt 0 ]; do
83 "--bzip2") 83 "--bzip2")
84 default_gzip="bzip2" 84 default_gzip="bzip2"
85 ;; 85 ;;
86 ## Same with lzma.
87 "--lzma")
88 default_gzip="lzma"
89 ;;
90 ## Same with xz. 86 ## Same with xz.
91 "--xz") 87 "--xz")
92 default_gzip="xz" 88 default_gzip="xz"
@@ -107,7 +103,6 @@ while [ $# -gt 0 ]; do
107 echo "" 103 echo ""
108 echo " --bzip2 use bzip2 instead of gzip" 104 echo " --bzip2 use bzip2 instead of gzip"
109 echo " --clean-up delete staging directories when done" 105 echo " --clean-up delete staging directories when done"
110 echo " --lzma use lzma instead of gzip"
111 echo " --xz use xz instead of gzip" 106 echo " --xz use xz instead of gzip"
112 echo " --no-compress don't compress" 107 echo " --no-compress don't compress"
113 echo " --newer=TIME don't include files older than TIME" 108 echo " --newer=TIME don't include files older than TIME"
@@ -518,7 +513,6 @@ if [ "${make_tar}" = yes ]; then
518 fi 513 fi
519 case "${default_gzip}" in 514 case "${default_gzip}" in
520 bzip2) gzip_extension=.bz2 ;; 515 bzip2) gzip_extension=.bz2 ;;
521 lzma) gzip_extension=.lzma ;;
522 xz) gzip_extension=.xz ;; 516 xz) gzip_extension=.xz ;;
523 gzip) gzip_extension=.gz ; default_gzip="gzip --best";; 517 gzip) gzip_extension=.gz ; default_gzip="gzip --best";;
524 *) gzip_extension= ;; 518 *) gzip_extension= ;;