Add macosx fix from #1407
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 26 Feb 2007 21:54:55 +0000 (21:54 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 26 Feb 2007 21:54:55 +0000 (21:54 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6392 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/busybox/patches/440-usage_compressed_fix.patch [new file with mode: 0644]

diff --git a/package/busybox/patches/440-usage_compressed_fix.patch b/package/busybox/patches/440-usage_compressed_fix.patch
new file mode 100644 (file)
index 0000000..9bf4d4c
--- /dev/null
@@ -0,0 +1,11 @@
+diff -urN busybox-1.4.1/applets/usage_compressed busybox-1.4.1.new/applets/usage_compressed
+--- busybox-1.4.1/applets/usage_compressed     2007-01-24 22:34:50.000000000 +0100
++++ busybox-1.4.1.new/applets/usage_compressed 2007-02-26 22:28:56.000000000 +0100
+@@ -14,6 +14,6 @@
+ echo 'static const char packed_usage[] = '
+ "$loc/usage" | bzip2 -1 | od -v -t x1 \
+-| $SED -e 's/^[^ ]*//' -e 's/ \(..\)/\\x\1/g' -e 's/^\(.*\)$/"\1"/'
++| $SED -e 's/^[^ ]*//' -e 's/ \([a-f0-9][a-f0-9]\)/\\x\1/g' -e 's/^\(.*\)$/"\1"/'
+ echo ';'
+ echo '#define SIZEOF_usage_messages' `expr 0 + $sz`