]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Wed, 31 Mar 2004 09:01:47 +0000 (09:01 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 31 Mar 2004 09:01:47 +0000 (09:01 +0000)
NEWS
src/Makefile.in

diff --git a/NEWS b/NEWS
index e299f66b7b4019268689d125f6b9021923b8a440..0debd89956aae0a084deeef790c5f43f8881fe1e 100644 (file)
--- 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]
 
index e596d7307d8428c7016ee60c3726f5203eff1051..b01f25e04ec8ee3cce89836fb26d1c44f9aca2fd 100644 (file)
@@ -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 \