diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2016-02-26 20:48:20 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2016-02-26 20:48:20 +0000 |
commit | 2130826c2e92af3f0229b4645e618ada311b8e46 (patch) | |
tree | 444c1d06d1fd08026bc702ad0cc2fc9815474b91 /sysutils/coreutils/files/patch-src_stty.c | |
parent | - Update to 3.10.1 (diff) |
sysutils/coreutils: 8.23 -> 8.25
- cp now correctly copies files with a hole at the end of the file,
and extents allocated beyond the apparent size of the file.
That combination resulted in the trailing hole not being reproduced.
- cut --fields no longer outputs extraneous characters on some uClibc
configs.
- install -D again copies relative file names when absolute file names
are also specified along with an absolute destination directory name.
- ls no longer prematurely wraps lines when printing short file names.
- mv no longer causes data loss due to removing a source directory specified
multiple times, when that directory is also specified as the destination.
- shred again uses defined patterns for all iteration counts.
- sort --debug -b now correctly marks the matching extents for keys
that specify an offset for the first field.
- tail -F now works with initially non existent files on a remote file system.
Please note: usability issue for 'ls' is discussed in
http://lists.gnu.org/archive/html/coreutils/2016-02/msg00000.html
PR: 206512
Submitted by: w.schwarzenfeld@aon.at
Approved by: jharris@widomaker.com (maintainer)
Diffstat (limited to 'sysutils/coreutils/files/patch-src_stty.c')
-rw-r--r-- | sysutils/coreutils/files/patch-src_stty.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/coreutils/files/patch-src_stty.c b/sysutils/coreutils/files/patch-src_stty.c new file mode 100644 index 000000000000..9bc150cc1ba2 --- /dev/null +++ b/sysutils/coreutils/files/patch-src_stty.c @@ -0,0 +1,15 @@ +--- src/stty.c.orig 2016-01-07 12:32:35 UTC ++++ src/stty.c +@@ -287,10 +287,10 @@ static struct mode_info const mode_info[ + # ifdef TAB3 + {"tab3", output, SANE_UNSET, TAB3, TABDLY}, + # endif +-# ifdef TAB2 ++# if 0 + {"tab2", output, SANE_UNSET, TAB2, TABDLY}, + # endif +-# ifdef TAB1 ++# if 0 + {"tab1", output, SANE_UNSET, TAB1, TABDLY}, + # endif + # ifdef TAB0 |