fix error - bad binary format (version mismatch)

The problem is that the generated make files end up referencing a mix of lua versions
This patch will fix it.
This commit is contained in:
Marko Oldenburg 2022-02-14 12:52:46 +01:00
parent e2a27af6e7
commit efa8155b68
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ SET(_POSSIBLE_LUA_INCLUDE include include/lua)
#SET(_POSSIBLE_LUA_LIBRARY lua)
# Determine possible naming suffixes (there is no standard for this)
SET(_POSSIBLE_SUFFIXES "52" "5.2" "-5.2" "53" "5.3" "-5.3" "")
SET(_POSSIBLE_SUFFIXES "54" "5.4" "-5.4" "53" "5.3" "-5.3" "52" "5.2" "-5.2" "")
# Set up possible search names and locations
FOREACH(_SUFFIX IN LISTS _POSSIBLE_SUFFIXES)