bug-coreutils
[Top][All Lists]
Advanced

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

FYI


From: Jim Meyering
Subject: FYI
Date: Fri, 30 May 2008 16:34:56 +0200

I've pushed a few small changes:

    configure.ac: remove explicit use of AB_INIT
    * configure.ac: Don't invoke AB_INIT directly, now that it's
    done automatically via gl_INIT.

    tests: ignore known failure on all Darwin 8.x / Mac OS X v10.4.x
    * tests/chgrp/basic: Update comment and host_triplet version test.

    tests: avoid failure with older version of Perl's File::Temp
    * tests/CuTmpdir.pm (import): Use &File::Temp::cleanup only
    if it is defined.  Reported by Bruno Haible in
    http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13652

commit eb4b2d462ea462547269b6380c6074e3ffcb60cf
Author: Jim Meyering <address@hidden>
Date:   Fri May 30 14:14:43 2008 +0200

    configure.ac: remove explicit use of AB_INIT

    * configure.ac: Don't invoke AB_INIT directly, now that it's
    done automatically via gl_INIT.

diff --git a/configure.ac b/configure.ac
index 6efb2aa..3c0e100 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,6 @@ AC_CONFIG_SRCDIR(src/ls.c)
 AC_CONFIG_AUX_DIR(build-aux)
 AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])

-AB_INIT()
 AM_INIT_AUTOMAKE([1.10.1 dist-lzma])

 AC_PROG_CC_STDC

commit 72df741618e6c559db45dee1593f6874377f3bd6
Author: Jim Meyering <address@hidden>
Date:   Fri May 30 10:45:45 2008 +0200

    tests: ignore known failure on all Darwin 8.x / Mac OS X v10.4.x

    * tests/chgrp/basic: Update comment and host_triplet version test.

diff --git a/tests/chgrp/basic b/tests/chgrp/basic
index 03b8f21..cd74978 100755
--- a/tests/chgrp/basic
+++ b/tests/chgrp/basic
@@ -96,7 +96,7 @@ sleep 1
 chgrp $g1 f

 # The following no-change chgrp command is supposed to update f's ctime,
-# but on OpenBSD and Darwin 7.9.0 and 8.8.0 (aka MacOS X 10.3.9 and 10.4),
+# but on OpenBSD and Darwin 7.9.0-8.11.1 (aka MacOS X 10.3.9 - 10.4.11)
 # it appears to be a no-op for some file system types (at least NFS) so g's
 # ctime is more recent.  This is not a big deal;
 # this test works fine when the files are on a local file system (/tmp).
@@ -105,7 +105,7 @@ test "`ls -C -c -t f g`" = 'f  g' || \
   {
     case $host_triplet in
       *openbsd*) echo ignoring known OpenBSD-specific chgrp failure 1>&2 ;;
-      *darwin7.9.*|*darwin8.8.*)
+      *darwin7.9.*|*darwin8.*)
         echo ignoring known MacOS X-specific chgrp failure 1>&2 ;;
       *) echo $host_triplet: no-change chgrp failed to update ctime 1>&2;
            fail=1 ;;

commit fc6827e2bb0a8d4d70c7f399e3b2915654a0c926
Author: Jim Meyering <address@hidden>
Date:   Fri May 30 09:45:53 2008 +0200

    tests: avoid failure with older version of Perl's File::Temp

    * tests/CuTmpdir.pm (import): Use &File::Temp::cleanup only
    if it is defined.  Reported by Bruno Haible in
    http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13652

diff --git a/tests/CuTmpdir.pm b/tests/CuTmpdir.pm
index e21306a..a7dd8b6 100644
--- a/tests/CuTmpdir.pm
+++ b/tests/CuTmpdir.pm
@@ -82,7 +82,9 @@ sub import {
     if ($$ == $original_pid and defined $dir)
       {
        chmod_tree;
-       File::Temp::cleanup;
+       # Older versions of File::Temp lack this method.
+       exists &File::Temp::cleanup
+         and &File::Temp::cleanup;
       }
     $SIG{$sig} = 'DEFAULT';
     kill $sig, $$;




reply via email to

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