summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-03-31 09:01:47 +0000
committerJim Meyering <jim@meyering.net>2004-03-31 09:01:47 +0000
commitdee056cd1bd7946c7742eea5b6c447ea015c8f48 (patch)
tree2ab6cf60c7b03180dc27a6c5278e2ee096315afc
parenta43f3fe3cf30bc72a471c5394c27b3309f13d584 (diff)
downloadcoreutils-dee056cd1bd7946c7742eea5b6c447ea015c8f48.tar.xz
.
-rw-r--r--NEWS7
-rw-r--r--src/Makefile.in2
2 files changed, 6 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index e299f66b7..0debd8995 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,11 @@ GNU coreutils NEWS -*- outline -*-
* Major changes in release 5.3.0 (2004-03-17) [unstable]
+** Bug fixes
+
+ ptx now diagnoses invalid values for its --width=N (-w)
+ and --gap-size=N (-g) options.
+
** New features
'df', 'du', and 'ls' now take the default block size from the
@@ -24,8 +29,6 @@ GNU coreutils NEWS -*- outline -*-
`date' has a new option --iso-8601=ns that outputs
nanosecond-resolution time stamps.
-** Bug fixes
-
* Major changes in release 5.2.1 (2004-03-12) [stable]
diff --git a/src/Makefile.in b/src/Makefile.in
index e596d7307..b01f25e04 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -974,7 +974,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 \