9 lines
155 B
Bash
Executable file
9 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
|
|
|