From: Jim Meyering Date: Wed, 30 Jun 2004 18:42:27 +0000 (+0000) Subject: . X-Git-Tag: v5.3.0~1218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=697c4afab54f5a2d6e748baf040cffb278fda727;p=thirdparty%2Fcoreutils.git . --- diff --git a/ChangeLog b/ChangeLog index 943a7bf273..1ac76f44e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,33 @@ -2004-06-29 Jim Meyering +2004-06-29 Paul Eggert * Version 5.3.0. + Add support for --no-target-directory option. + + * NEWS: Document it. + * doc/coreutils.texi (Common options, Target directory, cp + invocation, install invocation, mv invocation, ln invocation): + Likewise. + (link invocation): Explain how to rewrite link using ln now + that we have --no-target-directory. + (ln invocation): Explain that --no-target-directory subsumes + --no-dereference. + (unlink invocation): Modify wording to match new wording in + link invocation. + + * src/cp.c (NO_TARGET_DIRECTORY_OPTION): New constant. + (long_opts, usage, do_copy, main): Add support for + --no-target-directory, + * src/install.c (NO_TARGET_DIRECTORY_OPTION, long_options, main, + usage): Likewise. + * src/ln.c (NO_TARGET_DIRECTORY_OPTION, long_options, usage, + main): Likewise. + * src/mv.c (NO_TARGET_DIRECTORY_OPTION, long_options, usage, + main): Likewise. + * src/mv.c (enum): Sort values. + +2004-06-29 Jim Meyering + Don't let verbose-mode output from a subshell obscure actual differences. * tests/rm/inaccessible: Turn off command-echoing just before invoking subshell, then turn it back on if VERBOSE=yes afterward. diff --git a/src/Makefile.in b/src/Makefile.in index 3087831dd5..8175052d85 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -933,7 +933,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 \