diff options
author | Alexey Neyman <stilor@att.net> | 2019-02-13 14:44:34 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2019-02-13 14:45:07 -0800 |
commit | 1a3b562c75e40f9c2914727aa909d7605786eddc (patch) | |
tree | cfa99bf0fd7fc5f76080797b159800f5ca9bea6a /configure.ac | |
parent | 841c6fc8c19fb1388119198becaaef7f03dc7ee7 (diff) | |
download | crosstool-ng-1a3b562c75e40f9c2914727aa909d7605786eddc.tar.gz crosstool-ng-1a3b562c75e40f9c2914727aa909d7605786eddc.tar.bz2 crosstool-ng-1a3b562c75e40f9c2914727aa909d7605786eddc.zip |
Check for lzip (some archives are lzipped)
Ideally, we should just skip the archives for which we don't have the
utilities; let's leave it until I convert the "trivial checks" part of
crosstool-NG.sh into a separate configure script.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f5955b38..729047d3 100644 --- a/configure.ac +++ b/configure.ac @@ -122,6 +122,7 @@ CTNG_CHECK_PROGS_REQ([readlink], [readlink]) CTNG_CHECK_PROGS_REQ([tar], [tar]) CTNG_CHECK_PROGS_REQ([gzip], [gzip]) CTNG_CHECK_PROGS_REQ([bzip2], [bzip2]) +CTNG_CHECK_PROGS_REQ([lzip], [lzip]) CTNG_CHECK_PROGS_REQ([xz], [xz]) CTNG_CHECK_PROGS_REQ([unzip], [unzip]) CTNG_CHECK_PROGS_REQ([help2man], [help2man]) |