e99518277a
- remove non-working attempt to install an lzma to the host via sudo
10 lines
155 B
Bash
Executable File
10 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
bin=$(toolchain/dependencies/check-host-lzma.sh)
|
|
if [ "x$bin" = "x" ] ; then
|
|
echo build-lzma-host-binary
|
|
else
|
|
echo use-lzma-host-binary
|
|
fi
|
|
|