e99518277a
- remove non-working attempt to install an lzma to the host via sudo
14 lines
211 B
Bash
Executable File
14 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ok=""
|
|
|
|
for bin in /usr/bin/lzma $LZMA
|
|
do
|
|
# TODO: add check for proper functionality here..
|
|
$bin --version > /dev/null 2>&1 && ok="$bin"
|
|
if test "x$ok" != "x" ; then
|
|
break
|
|
fi
|
|
done
|
|
echo "$ok"
|