* build-aux/announce-gen: Also check for lzma-compressed files.
authorJim Meyering <meyering@redhat.com>
Sat, 12 Jan 2008 07:54:48 +0000 (08:54 +0100)
committerJim Meyering <meyering@redhat.com>
Sat, 12 Jan 2008 07:54:48 +0000 (08:54 +0100)
ChangeLog
build-aux/announce-gen

index 82102a4..42b1e16 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-12  Jim Meyering  <meyering@redhat.com>
+
+       * build-aux/announce-gen: Also check for lzma-compressed files.
+
 2008-01-11  Bruno Haible  <bruno@clisp.org>
 
        * tests/test-memmem.c (main): Increase maximum allowed time.
index cc087d0..1fb60b1 100755 (executable)
@@ -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;