diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-02-26 21:54:55 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-02-26 21:54:55 +0000 |
commit | 458fc9e1444c044f77c00a28e62c940b58f9edd1 (patch) | |
tree | d7dccb62e01e77596ade60a461ac563c950ebb6c | |
parent | 9405a2a6be701ee92ad0ffbe15d069bdae2cf850 (diff) | |
download | upstream-458fc9e1444c044f77c00a28e62c940b58f9edd1.tar.gz upstream-458fc9e1444c044f77c00a28e62c940b58f9edd1.tar.bz2 upstream-458fc9e1444c044f77c00a28e62c940b58f9edd1.zip |
Add macosx fix from #1407
SVN-Revision: 6392
-rw-r--r-- | package/busybox/patches/440-usage_compressed_fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/busybox/patches/440-usage_compressed_fix.patch b/package/busybox/patches/440-usage_compressed_fix.patch new file mode 100644 index 0000000000..9bf4d4cda8 --- /dev/null +++ b/package/busybox/patches/440-usage_compressed_fix.patch @@ -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` |