summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-10-25 11:14:43 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-10-25 11:14:43 +0000
commit0ee31ca22e253b027abd71d683e6f85350c6e2a9 (patch)
treef40e3158e37f45e1ee60f3b915b3349d522d62b7 /package/busybox
parent4ab812109b86429ddfd9a96d80b7b398447d7507 (diff)
downloadmaster-31e0f0ae-0ee31ca22e253b027abd71d683e6f85350c6e2a9.tar.gz
master-31e0f0ae-0ee31ca22e253b027abd71d683e6f85350c6e2a9.tar.bz2
master-31e0f0ae-0ee31ca22e253b027abd71d683e6f85350c6e2a9.zip
package/busybox: include an upstream patch
SVN-Revision: 23630
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/000-upstream-sort.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/patches/000-upstream-sort.patch b/package/busybox/patches/000-upstream-sort.patch
new file mode 100644
index 0000000000..ebc9bf9f94
--- /dev/null
+++ b/package/busybox/patches/000-upstream-sort.patch
@@ -0,0 +1,12 @@
+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++)