summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-01-12 08:54:48 +0100
committerJim Meyering <meyering@redhat.com>2008-01-12 08:54:48 +0100
commit488ac0ac88ef2824c7bd41c791aeb87f4dace45b (patch)
treefb8fb27511481ce6775cd2aa8913d7abc476b0d7 /build-aux/announce-gen
parent4cc1c913a03d9f6318453806494ca52ea3884d4a (diff)
downloadgnulib-488ac0ac88ef2824c7bd41c791aeb87f4dace45b.tar.gz
* build-aux/announce-gen: Also check for lzma-compressed files.
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen7
1 files changed, 4 insertions, 3 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index cc087d0447..1fb60b1448 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -1,13 +1,13 @@
#!/usr/bin/perl -w
# Generate a release announcement message.
-my $VERSION = '2007-07-22 16:09'; # UTC
+my $VERSION = '2008-01-12 07:47'; # 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
# do its job. Otherwise, update this string manually.
-# Copyright (C) 2002-2007 Free Software Foundation, Inc.
+# Copyright (C) 2002-2008 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -426,9 +426,10 @@ sub get_tool_versions ($$)
my $my_distdir = "$package_name-$curr_version";
my $tgz = "$my_distdir.tar.gz";
my $tbz = "$my_distdir.tar.bz2";
+ my $lzma = "$my_distdir.tar.lzma";
my $xd = "$package_name-$prev_version-$curr_version.xdelta";
- my @tarballs = grep {-f $_} ($tgz, $tbz);
+ my @tarballs = grep {-f $_} ($tgz, $tbz, $lzma);
my @sizable = @tarballs;
-f $xd
and push @sizable, $xd;