summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.5.0-ps.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-03-26 21:53:15 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-03-26 21:53:15 +0000
commit9c078e173aa2ce9d386942e8acb6acf811eeeddf (patch)
tree4e75fb59cfd5a889f9c07197d4118ade21c406a2 /package/busybox/busybox-1.5.0-ps.patch
parent49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (diff)
downloadbuildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.tar.gz
buildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.zip
busybox: remove unused configs/patches
Diffstat (limited to 'package/busybox/busybox-1.5.0-ps.patch')
-rw-r--r--package/busybox/busybox-1.5.0-ps.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/busybox/busybox-1.5.0-ps.patch b/package/busybox/busybox-1.5.0-ps.patch
deleted file mode 100644
index fcd35e2dd..000000000
--- a/package/busybox/busybox-1.5.0-ps.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- busybox-1.5.0/procps/ps.c Thu Mar 22 22:21:37 2007
-+++ busybox-1.5.0-ps/procps/ps.c Wed Mar 28 23:57:34 2007
-@@ -262,7 +262,9 @@
- parse_o(default_o);
- post_process();
-
-- terminal_width = INT_MAX;
-+ /* Was INT_MAX, but some libc's go belly up with printf("%.*s")
-+ * and such large widths */
-+ terminal_width = 30000;
- if (isatty(1)) {
- get_terminal_width_height(1, &terminal_width, NULL);
- terminal_width--;