diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-27 22:55:57 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-02-27 22:55:57 -0800 |
commit | 439cab379e169f505494376f55f1438d12de94fa (patch) | |
tree | 61ea3d9d2ebc26870adc22b3e9756ab1cc13e801 /configure.ac | |
parent | 1ec5e7aa3400b534264ba1c2fa3949dc6a2cca90 (diff) | |
download | crosstool-ng-439cab379e169f505494376f55f1438d12de94fa.tar.gz crosstool-ng-439cab379e169f505494376f55f1438d12de94fa.tar.bz2 crosstool-ng-439cab379e169f505494376f55f1438d12de94fa.zip |
Require xz to be present
Some software starts to adopt xz-only distribution (strace,
gcc-linaro, ...). Better that than deal with cryptic errors like
"cannot find strace-.tar.bz2".
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 60ba535e..3c943920 100644 --- a/configure.ac +++ b/configure.ac @@ -214,6 +214,7 @@ ACX_CHECK_PROGS_REQ([readlink], [readlink]) ACX_CHECK_PROGS_REQ([tar], [tar]) ACX_CHECK_PROGS_REQ([gzip], [gzip]) ACX_CHECK_PROGS_REQ([bzip2], [bzip2]) +ACX_CHECK_PROGS_REQ([xz], [xz]) ACX_CHECK_PROGS_REQ([help2man], [help2man]) # Not a fatal failure even if we have neither - the tarballs may @@ -348,14 +349,6 @@ AC_SUBST([GPERF_LEN_TYPE]) AC_SUBST([kconfig_options]) #---------------------------------------- -AC_CHECK_PROGS([xz], [xz]) -ACX_SET_KCONFIG_OPTION([xz]) -AS_IF( - [test -z "$xz"], - [AC_CHECK_PROGS([lzma], [lzma])]) -ACX_SET_KCONFIG_OPTION([lzma]) - -#---------------------------------------- AC_CHECK_PROGS([cvs], [cvs]) ACX_SET_KCONFIG_OPTION([cvs]) |