bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

two tiny changes


From: Jim Meyering
Subject: two tiny changes
Date: Mon, 08 Dec 2008 18:44:58 +0100

I'll push these pretty soon.

>From 8cac94365d8b5e8fb84089cb90523adcfb96fb71 Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Tue, 2 Dec 2008 17:29:25 +0100
Subject: [PATCH 1/2] * build-aux/announce-gen (get_tool_versions): Accept .xz 
tarballs.

---
 build-aux/announce-gen |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index 78ca625..d1a4b25 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;
--
1.6.1.rc2.282.ga5881


>From 0488f081d1ecb7fcea730953b59d24cd093dedff Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Mon, 8 Dec 2008 18:33:14 +0100
Subject: [PATCH 2/2] * lib/posixtm.c: Remove now-useless declaration of mktime.

---
 lib/posixtm.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/lib/posixtm.c b/lib/posixtm.c
index 7740f4d..4d044a3 100644
--- a/lib/posixtm.c
+++ b/lib/posixtm.c
@@ -41,8 +41,6 @@
    of `digit' even when the host does not conform to POSIX.  */
 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)

-time_t mktime ();
-
 /*
   POSIX requires:

--
1.6.1.rc2.282.ga5881




reply via email to

[Prev in Thread] Current Thread [Next in Thread]