summaryrefslogtreecommitdiff
path: root/package/busybox/patches/000-upstream-sort.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2011-04-03 18:31:00 +0000
committerFlorian Fainelli <florian@openwrt.org>2011-04-03 18:31:00 +0000
commit03e30ae13f122c6606d8c63dbf0e49a5f4a8dc79 (patch)
tree138dd3337ab4da580067379a45074ea7e7cf7b11 /package/busybox/patches/000-upstream-sort.patch
parent1bda5f253040898869baba09a04008ef51009cca (diff)
downloadmtk-20170518-03e30ae13f122c6606d8c63dbf0e49a5f4a8dc79.zip
mtk-20170518-03e30ae13f122c6606d8c63dbf0e49a5f4a8dc79.tar.gz
mtk-20170518-03e30ae13f122c6606d8c63dbf0e49a5f4a8dc79.tar.bz2
update busybox to 1.18.4, patch from Peter Wagner
SVN-Revision: 26455
Diffstat (limited to 'package/busybox/patches/000-upstream-sort.patch')
-rw-r--r--package/busybox/patches/000-upstream-sort.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/busybox/patches/000-upstream-sort.patch b/package/busybox/patches/000-upstream-sort.patch
deleted file mode 100644
index ebc9bf9..0000000
--- a/package/busybox/patches/000-upstream-sort.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urpN busybox-1.17.3/coreutils/sort.c busybox-1.17.3-sort/coreutils/sort.c
---- busybox-1.17.3/coreutils/sort.c 2010-10-09 21:57:13.000000000 +0200
-+++ busybox-1.17.3-sort/coreutils/sort.c 2010-10-20 15:17:35.320293543 +0200
-@@ -412,7 +412,7 @@ int sort_main(int argc UNUSED_PARAM, cha
- #if ENABLE_FEATURE_SORT_BIG
- /* Open output file _after_ we read all input ones */
- if (option_mask32 & FLAG_o)
-- xmove_fd(xopen3(str_o, O_WRONLY, 0666), STDOUT_FILENO);
-+ xmove_fd(xopen3(str_o, O_WRONLY|O_CREAT|O_TRUNC, 0666), STDOUT_FILENO);
- #endif
- flag = (option_mask32 & FLAG_z) ? '\0' : '\n';
- for (i = 0; i < linecount; i++)