projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06a80bd
)
simpler check for od
author
Denys Vlasenko
<dvlasenk@redhat.com>
Thu, 16 Sep 2010 13:46:20 +0000
(15:46 +0200)
committer
Denys Vlasenko
<dvlasenk@redhat.com>
Thu, 16 Sep 2010 13:46:20 +0000
(15:46 +0200)
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
applets/usage_compressed
patch
|
blob
|
history
diff --git
a/applets/usage_compressed
b/applets/usage_compressed
index 9436dcd5d0b1cce40dd0ca9ec276a804a8288337..af66bc5dc2fd222ef4bc4ba0adff6cf40a6d25f0 100755
(executable)
--- a/
applets/usage_compressed
+++ b/
applets/usage_compressed
@@
-9,7
+9,8
@@
test -x "$loc/usage" || exit 1
test "$SED" || SED=sed
test "$DD" || DD=dd
-true | od -v -t x1 >/dev/null
+# Some people were bitten by their system lacking a (proper) od
+od -v -t x1 </dev/null >/dev/null
if test $? != 0; then
echo 'od tool is not installed or cannot accept "-v -t x1" options'
exit 1