-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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) git-svn-id: svn+ssh://svn.freebsd.org/ports/head@409637 35697150-7ecd-e111-bb59-0022644237b5
- Loading branch information
pi
committed
Feb 26, 2016
1 parent
860e985
commit 8c8aea4
Showing
6 changed files
with
34 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SHA256 (coreutils-8.23.tar.xz) = ec43ca5bcfc62242accb46b7f121f6b684ee21ecd7d075059bf650ff9e37b82d | ||
SIZE (coreutils-8.23.tar.xz) = 5375612 | ||
SHA256 (coreutils-8.25.tar.xz) = 31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87 | ||
SIZE (coreutils-8.25.tar.xz) = 5725008 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
diff -r a5a32a34077b configure | ||
--- configure.orig Tue Oct 30 11:49:55 2012 -0400 | ||
+++ configure Tue Oct 30 11:51:28 2012 -0400 | ||
@@ -4301,7 +4301,7 @@ | ||
--- configure.orig 2016-01-20 10:32:53 UTC | ||
+++ configure | ||
@@ -4356,7 +4356,7 @@ for as_dir in $PATH$PATH_SEPARATOR/opt/s | ||
do | ||
IFS=$as_save_IFS | ||
test -z "$as_dir" && as_dir=. | ||
- for ac_prog in mkdir gmkdir; do | ||
+ for ac_prog in mkdir; do | ||
for ac_exec_ext in '' $ac_executable_extensions; do | ||
{ test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue | ||
as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue | ||
case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters