mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Build: Don't allow empty LIST in --enable-match-finders=LIST.
It's enforced only when a match finder is needed, that is, when LZMA1 or LZMA2 encoder is enabled.
This commit is contained in:
parent
9cc721af54
commit
4d80b463a1
1 changed files with 4 additions and 0 deletions
|
@ -210,6 +210,10 @@ AC_ARG_ENABLE([match-finders], AS_HELP_STRING([--enable-match-finders=LIST],
|
|||
[enable_match_finders=SUPPORTED_MATCH_FINDERS])
|
||||
enable_match_finders=`echo "$enable_match_finders" | sed 's/,/ /g'`
|
||||
if test "x$enable_encoder_lz" = xyes ; then
|
||||
if test -z "$enable_match_finders"; then
|
||||
AC_MSG_ERROR([At least one match finder is required for an LZ-based encoder.])
|
||||
fi
|
||||
|
||||
for arg in $enable_match_finders
|
||||
do
|
||||
case $arg in m4_foreach([NAME], [SUPPORTED_MATCH_FINDERS], [
|
||||
|
|
Loading…
Reference in a new issue