changeset 9609:55121d90f0ce

* build-aux/announce-gen: Also check for lzma-compressed files.
author Jim Meyering <meyering@redhat.com>
date Sat, 12 Jan 2008 08:54:48 +0100
parents fb28b78f856f
children d317af57e145
files ChangeLog build-aux/announce-gen
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- 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 @@
   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;