# HG changeset patch # User Romain Francoise # Date 1199539593 0 # Node ID 3d7ab5b38c543c4c97c0d703e00e33c688329610 # Parent 45568b22f6e5042c6cfb2db2709bccd5f5a12602 Add --bzip2. Update copyright. diff -r 45568b22f6e5 -r 3d7ab5b38c54 ChangeLog --- a/ChangeLog Sat Jan 05 11:14:48 2008 +0000 +++ b/ChangeLog Sat Jan 05 13:26:33 2008 +0000 @@ -1,3 +1,7 @@ +2008-01-05 Romain Francoise + + * make-dist: Add --bzip2. Update copyright. + 2008-01-05 Dan Nicolaescu * configure.in: Remove support for Masscomp. diff -r 45568b22f6e5 -r 3d7ab5b38c54 make-dist --- a/make-dist Sat Jan 05 11:14:48 2008 +0000 +++ b/make-dist Sat Jan 05 13:26:33 2008 +0000 @@ -7,7 +7,7 @@ #### you should make sure that this script will include it. # Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, -# 2006, 2007 Free Software Foundation, Inc. +# 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is part of GNU Emacs. # @@ -81,6 +81,10 @@ "--compress") default_gzip="compress" ;; + ## Same with bzip2. + "--bzip2") + default_gzip="bzip2" + ;; "--snapshot") clean_up=yes @@ -92,6 +96,7 @@ "--help") echo "Usage: ${progname} [options]" echo "" + echo " --bzip2 use bzip2 instead of gzip" echo " --clean-up delete staging directories when done" echo " --compress use compress instead of gzip" echo " --newer=TIME don't include files older than TIME" @@ -743,6 +748,7 @@ )` fi case "${default_gzip}" in + bzip2) gzip_extension=.bz2 ;; compress* ) gzip_extension=.Z ;; * ) gzip_extension=.gz ;; esac