diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-08-19 18:09:48 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-08-19 18:09:48 +0200 |
commit | 86dfed8c166fbbdf03985b46eb3c69b4ec1030b1 (patch) | |
tree | 1b5ba6990ee11053c9817e73f41853f055f4fc80 | |
parent | 4c863c8a5d97ba758af95b153a99d80cf34216d1 (diff) |
some kernels use LZMA, some XZ by default now. Check both tools.
-rw-r--r-- | scripts/scan-tools.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 8834940c7..4ffe44649 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -112,8 +112,14 @@ if ! which gzip >/dev/null 2>&1; then out=1 fi -if ! which lzma >/dev/null 2>&1 && ! which xz >/dev/null 2>&1; then - echo You must install lzma or xz-utils to continue. +if ! which lzma >/dev/null 2>&1; then + echo You must install lzma to continue. + echo + out=1 +fi + +if ! which xz >/dev/null 2>&1; then + echo You must install xz-utils to continue. echo out=1 fi |