From 488ac0ac88ef2824c7bd41c791aeb87f4dace45b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 12 Jan 2008 08:54:48 +0100 Subject: [PATCH] * build-aux/announce-gen: Also check for lzma-compressed files. --- ChangeLog | 4 ++++ build-aux/announce-gen | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 82102a4dd..42b1e165e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-01-12 Jim Meyering + + * build-aux/announce-gen: Also check for lzma-compressed files. + 2008-01-11 Bruno Haible * tests/test-memmem.c (main): Increase maximum allowed time. diff --git a/build-aux/announce-gen b/build-aux/announce-gen index cc087d044..1fb60b144 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; -- 2.11.0