aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-09 20:31:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-09 20:31:57 +0000
commit63e49fa56f31aca5b62d9382e9c621307232b241 (patch)
tree3c4fd003dceca375ebab9e3e04e80e6a86628f7c
parent69f4f9a6f40e2825c93fad4d3adf453c9b33d9bb (diff)
downloadbusybox-w32-63e49fa56f31aca5b62d9382e9c621307232b241.tar.gz
busybox-w32-63e49fa56f31aca5b62d9382e9c621307232b241.tar.bz2
busybox-w32-63e49fa56f31aca5b62d9382e9c621307232b241.zip
fix byte-swapping of compressed help on big-endian machines
-rwxr-xr-xapplets/usage_compressed17
1 files changed, 12 insertions, 5 deletions
diff --git a/applets/usage_compressed b/applets/usage_compressed
index 551b4b4ba..05ceafd4a 100755
--- a/applets/usage_compressed
+++ b/applets/usage_compressed
@@ -14,14 +14,21 @@ exec >"$target"
14 14
15echo 'static const char packed_usage[] ALIGN1 = {' 15echo 'static const char packed_usage[] ALIGN1 = {'
16 16
17# Extra effort to avoid using "od -t x1": -t is not available 17## Breaks on big-endian systems!
18# in non-CONFIG_DESKTOPed busybox od 18## # Extra effort to avoid using "od -t x1": -t is not available
19 19## # in non-CONFIG_DESKTOPed busybox od
20"$loc/usage" | bzip2 -1 | od -v -x \ 20##
21## "$loc/usage" | bzip2 -1 | od -v -x \
22## | $SED -e 's/^[^ ]*//' \
23## | $SED -e 's/ //g' \
24## | grep -v '^$' \
25## | $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g'
26
27"$loc/usage" | bzip2 -1 | od -v -t x1 \
21| $SED -e 's/^[^ ]*//' \ 28| $SED -e 's/^[^ ]*//' \
22| $SED -e 's/ //g' \ 29| $SED -e 's/ //g' \
23| grep -v '^$' \ 30| grep -v '^$' \
24| $SED -e 's/\(..\)\(..\)/0x\2,0x\1,/g' 31| $SED -e 's/\(..\)/0x\1,/g'
25 32
26echo '};' 33echo '};'
27echo '#define SIZEOF_usage_messages' `expr 0 + $sz` 34echo '#define SIZEOF_usage_messages' `expr 0 + $sz`