]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Mon, 11 Aug 2003 18:25:04 +0000 (18:25 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 11 Aug 2003 18:25:04 +0000 (18:25 +0000)
NEWS
src/Makefile.in
tests/misc/Makefile.in

diff --git a/NEWS b/NEWS
index 667f902fd3efbbb1780b3b366eec3e2eaeea20ed..fd2ec9fc04fb90a90a65928ebe0f9a27e4598b82 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -15,7 +15,10 @@ GNU coreutils NEWS                                    -*- outline -*-
 
 ** Bug fixes
 
-  `split -a0' works once again.
+  fold -s -wN would infloop for N < 8 with TABs in the input.
+  E.g., this would not terminate: printf 'a\t' | fold -w2 -s
+
+  `split -a0', although of questionable utility, is accepted once again.
 
   `df DIR' used to hang under some conditions on OSF/1 5.1.  Now it doesn't.
 
index 08663cf571ed246bc315b1c6b5dc8f744b9d0435..91516c2d2124aeb4355b1f7c71cc0ff901b4f83b 100644 (file)
@@ -868,7 +868,7 @@ uninstall-binPROGRAMS:
        done
 
 clean-binPROGRAMS:
-       -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+       -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS)
 
 installcheck-binPROGRAMS: $(bin_PROGRAMS)
        bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \
index 51522ae20a458fe831b2c1327aa26892d35b6b38..6b08063e966c53e478a6edb4cc9b52b71d70242a 100644 (file)
@@ -163,6 +163,7 @@ TESTS_ENVIRONMENT = \
 
 
 TESTS = \
+  fold \
   nohup \
   readlink \
   head-elide-tail \