X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=build-aux%2Fannounce-gen;h=d1a4b255ae9d01fc9f4033bcf135bca36e465ff5;hb=a6608a8874c5af8d43904ee8b06c1c65ea284fa1;hp=78ca62551daeed3257bb11e64dba64639745c3f7;hpb=c6790e9ece33da10ea5e64c25e57a5488584786a;p=gnulib.git diff --git a/build-aux/announce-gen b/build-aux/announce-gen index 78ca62551..d1a4b255a 100755 --- a/build-aux/announce-gen +++ b/build-aux/announce-gen @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # Generate a release announcement message. -my $VERSION = '2008-10-10 05:12'; # UTC +my $VERSION = '2008-12-02 16:28'; # 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 @@ -429,11 +429,13 @@ sub get_tool_versions ($$) my $tgz = "$my_distdir.tar.gz"; my $tbz = "$my_distdir.tar.bz2"; my $lzma = "$my_distdir.tar.lzma"; + my $xz = "$my_distdir.tar.xz"; + my $xd = "$package_name-$prev_version-$curr_version.xdelta"; - my @tarballs = grep {-f $_} ($tgz, $tbz, $lzma); + my @tarballs = grep {-f $_} ($tgz, $tbz, $lzma, $xz); @tarballs - or die "$ME: none of $tgz, $tbz, or $lzma were found\n"; + or die "$ME: none of $tgz, $tbz, $lzma or $xz were found\n"; my @sizable = @tarballs; -f $xd and push @sizable, $xd;