diff options
-rw-r--r-- | eclass/lua-single.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/lua-single.eclass b/eclass/lua-single.eclass index ab4fdb3c75ac..f55c3f809484 100644 --- a/eclass/lua-single.eclass +++ b/eclass/lua-single.eclass @@ -348,7 +348,7 @@ _lua_verify_patterns() { local impl pattern for pattern; do - for impl in "${_LUA_ALL_IMPLS[@]}"; do + for impl in "${_LUA_ALL_IMPLS[@]}" "${_LUA_HISTORICAL_IMPLS[@]}"; do [[ ${impl} == ${pattern/./-} ]] && continue 2 done |