diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 15:33:33 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-21 15:33:33 +0000 |
commit | e99518277a04f0e8cf5054a6d305b2d859a59b25 (patch) | |
tree | 911a013f8d6703da67a94c809252d3f3b5414b93 /package/lzma/lzmacheck.sh | |
parent | 1afb8226cbaf011f81158b63c2c169ce05842d21 (diff) | |
download | buildroot-novena-e99518277a04f0e8cf5054a6d305b2d859a59b25.tar.gz buildroot-novena-e99518277a04f0e8cf5054a6d305b2d859a59b25.zip |
- add handling of lzma for the host (unconditionally for now)
- remove non-working attempt to install an lzma to the host via sudo
Diffstat (limited to 'package/lzma/lzmacheck.sh')
-rwxr-xr-x | package/lzma/lzmacheck.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/lzma/lzmacheck.sh b/package/lzma/lzmacheck.sh new file mode 100755 index 000000000..bcb0423d1 --- /dev/null +++ b/package/lzma/lzmacheck.sh @@ -0,0 +1,9 @@ +#!/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 + |