summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-12-11 23:46:04 +0000
committerJim Meyering <jim@meyering.net>2002-12-11 23:46:04 +0000
commit50547ce12dbaea8a61e947722e5b995c6f42e4ac (patch)
treeb04927e4628873f3b788f31fd0b25f9e39013c3f
parent7ba3e40970f6c366abed4b21805ebb994c69966e (diff)
downloadcoreutils-50547ce12dbaea8a61e947722e5b995c6f42e4ac.tar.xz
*** empty log message ***
-rw-r--r--ChangeLog11
-rw-r--r--NEWS4
2 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de37152b9..80679f07a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,16 @@
-2002-12-11 Jim Meyering <jim@meyering.net>
+2002-12-12 Jim Meyering <jim@meyering.net>
* Version 4.5.4.
+2002-12-11 TAKAI Kousuke <takai@vlsi.kuee.kyoto-u.ac.jp>
+
+ Fix a bug whereby cp would fail to parse an option like
+ --preserve=mode,ownership.
+ * src/cp.c (decode_preserve_arg): Advance `comma' to
+ point the character following the comma.
+
+2002-12-11 Jim Meyering <jim@meyering.net>
+
* src/pathchk.c (NEED_PATHCONF_WRAPPER): Undefine before defining,
in case it's already defined.
diff --git a/NEWS b/NEWS
index dd04ab7d0..153aa7b46 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
[4.5.4]
+* cp no longer fails to parse options like this: --preserve=mode,ownership
* `ls --color -F symlink-to-dir' works properly
* ls is much more efficient on directories with valid dirent.d_type.
* stty supports all baud rates defined in linux-2.4.19.
@@ -23,9 +24,11 @@
* df now displays the block size using powers of 1000 if the requested
block size seems to be a multiple of a power of 1000.
* nl no longer gets a segfault when run like this `yes|nl -s%n'
+
[4.5.3]
* du --dereference-args (-D) no longer fails in certain cases
* `ln --target-dir=DIR' no longer fails when given a single argument
+
[4.5.2]
* `rm -i dir' (without --recursive (-r)) no longer recurses into dir
* `tail -c N FILE' now works with files of size >= 4GB
@@ -34,6 +37,7 @@
* printf now honors the `--' command line delimiter
* od's 8-byte formats x8, o8, and u8 now work
* tail now accepts fractional seconds for its --sleep-interval=S (-s) option
+
[4.5.1]
* du and ls now report sizes of symbolic links (before they'd always report 0)
* uniq now obeys the LC_COLLATE locale, as per POSIX 1003.1-2001 TC1.