summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.4.1-binhex.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.4.1-binhex.patch
parent49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (diff)
downloadbuildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.tar.gz
buildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.zip
busybox: remove unused configs/patches
Diffstat (limited to 'package/busybox/busybox-1.4.1-binhex.patch')
-rw-r--r--package/busybox/busybox-1.4.1-binhex.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/busybox/busybox-1.4.1-binhex.patch b/package/busybox/busybox-1.4.1-binhex.patch
deleted file mode 100644
index dc2ab1adb..000000000
--- a/package/busybox/busybox-1.4.1-binhex.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- busybox-1.4.1/include/libbb.h Wed Jan 24 22:34:48 2007
-+++ busybox-1.4.1-binhex/include/libbb.h Sat Jan 27 00:32:01 2007
-@@ -690,7 +690,7 @@
- extern const char bb_msg_standard_output[];
-
- extern const char bb_str_default[];
--/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */
-+/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
- extern const char bb_hexdigits_upcase[];
-
- extern const char bb_path_mtab_file[];
---- busybox-1.4.1/libbb/xfuncs.c Wed Jan 24 22:49:25 2007
-+++ busybox-1.4.1-binhex/libbb/xfuncs.c Sat Jan 27 00:32:01 2007
-@@ -340,8 +340,8 @@
- while (count) {
- unsigned char c = *cp++;
- /* put lowercase hex digits */
-- *p++ = 0x10 | bb_hexdigits_upcase[c >> 4];
-- *p++ = 0x10 | bb_hexdigits_upcase[c & 0xf];
-+ *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
-+ *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
- count--;
- }
- return p;