summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-10-15 21:47:54 +0000
committerJim Meyering <jim@meyering.net>2003-10-15 21:47:54 +0000
commit1c5ec523a49b43d399b09f3817fecacc2a71e4da (patch)
tree682106ebc12cb9f5fe7023e9dab6afb9bd3ccc99
parent14481892fe73ec1033c3b20e425e3952c437b61e (diff)
downloadcoreutils-1c5ec523a49b43d399b09f3817fecacc2a71e4da.tar.xz
.
-rw-r--r--ChangeLog11
-rw-r--r--lib/Makefile.in4
-rw-r--r--src/Makefile.in2
3 files changed, 8 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index ecf0973b1..cfbcae159 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
2003-10-15 Jim Meyering <jim@meyering.net>
- * tests/chgrp/recurse: Update tests accordingly.
+ * Version 5.1.0.
chown and chgrp now accept POSIX-mandated -H, -L, -P options and
use fts to perform a directory traversal when -R is specified.
@@ -36,6 +36,10 @@
[struct Chown_option] (affect_symlink_referent): New member.
(chown_files): New prototype.
+ * tests/chgrp/recurse: Update tests accordingly.
+ * tests/chgrp/posix-H: New tests for the above.
+ * tests/chgrp/Makefile.am (TESTS): Add posix-H.
+
* src/ln.c (usage): Clarify that --directory, -d, -F probably won't
work even for superuser. Suggestion from Dan Jacobson.
@@ -50,8 +54,6 @@
2003-10-14 Jim Meyering <jim@meyering.net>
- * Version 5.0.92.
-
FIXME: update coreutils.texi:
chmod's new options: --preserve-root and --no-preserve-root.
chown and chgrp have new options: -H -L -P
@@ -60,9 +62,6 @@
warning-inducing test, ws.ws_col <= SIZE_MAX, since it was always
true on Linux.
- * tests/chgrp/posix-H: New tests for the above.
- * tests/chgrp/Makefile.am (TESTS): Add posix-H.
-
2003-10-13 Paul Eggert <eggert@twinsun.com>
Fix to avoid a denial-of-service attack if the display width is
diff --git a/lib/Makefile.in b/lib/Makefile.in
index ceea2e79b..84da1fdd3 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -773,9 +773,9 @@ distclean-generic:
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
- -rm -f getdate.c
- -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
+ -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
+ -rm -f getdate.c
clean: clean-am
clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
diff --git a/src/Makefile.in b/src/Makefile.in
index 249983465..1d433a5c2 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -873,7 +873,7 @@ uninstall-binPROGRAMS:
done
clean-binPROGRAMS:
- -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS)
+ -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
installcheck-binPROGRAMS: $(bin_PROGRAMS)
bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \