summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-08-11 18:25:04 +0000
committerJim Meyering <jim@meyering.net>2003-08-11 18:25:04 +0000
commit31f092ff08d87fb504afd9c004367d7674e6ea54 (patch)
treeb160a1c0728521113b240c8af57489a5ebb6726f
parent2a2f75c9c75abbf15aea22491843db4276106040 (diff)
downloadcoreutils-31f092ff08d87fb504afd9c004367d7674e6ea54.tar.xz
.
-rw-r--r--NEWS5
-rw-r--r--src/Makefile.in2
-rw-r--r--tests/misc/Makefile.in1
3 files changed, 6 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 667f902fd..fd2ec9fc0 100644
--- 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.
diff --git a/src/Makefile.in b/src/Makefile.in
index 08663cf57..91516c2d2 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -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 \
diff --git a/tests/misc/Makefile.in b/tests/misc/Makefile.in
index 51522ae20..6b08063e9 100644
--- a/tests/misc/Makefile.in
+++ b/tests/misc/Makefile.in
@@ -163,6 +163,7 @@ TESTS_ENVIRONMENT = \
TESTS = \
+ fold \
nohup \
readlink \
head-elide-tail \