summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2020-05-10 18:11:04 +0200
committerAkim Demaille <akim.demaille@gmail.com>2020-05-10 18:14:44 +0200
commit4f4779e15adb7f1c61e8e13ab2bdf08974e33945 (patch)
tree6d653239091ad45a49fd4e9f46e38199bf7de421 /build-aux/announce-gen
parentda2a958f184bfeb1d3491b53eed6473241d9268c (diff)
downloadgnulib-4f4779e15adb7f1c61e8e13ab2bdf08974e33945.tar.gz
announce-gen: add support for dist-lzip
* build-aux/announce-gen (@archive_suffixes): Add tar.lz.
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index a59031f9e7..b095a05eb8 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -35,7 +35,7 @@
eval 'exec perl -wSx "$0" "$@"'
if 0;
-my $VERSION = '2020-04-04 15:07'; # UTC
+my $VERSION = '2020-05-10 16:13'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
@@ -48,7 +48,7 @@ use POSIX qw(strftime);
(my $ME = $0) =~ s|.*/||;
my %valid_release_types = map {$_ => 1} qw (alpha beta stable);
-my @archive_suffixes = ('tar.gz', 'tar.bz2', 'tar.lzma', 'tar.xz');
+my @archive_suffixes = qw (tar.gz tar.bz2 tar.lz tar.lzma tar.xz);
my %digest_classes =
(
'md5' => (eval { require Digest::MD5; } and 'Digest::MD5'),