luajit: Fix override syntax

Do not convert the variable name resembling override setups passed to makefile
Fix some of missed overrides

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Khem Raj
2021-08-03 12:31:19 -07:00
parent 1f97c59b45
commit fd2b4dbacd
@@ -30,8 +30,8 @@ BUILD_CC_ARCH:append = " ${@['-m32',''][d.getVar('SITEINFO_BITS') != '32']}"
# Values: Windows, Linux, Darwin, iOS, SunOS, PS3, GNU/kFreeBSD # Values: Windows, Linux, Darwin, iOS, SunOS, PS3, GNU/kFreeBSD
LUA_TARGET_OS = "Unknown" LUA_TARGET_OS = "Unknown"
LUA_TARGET_OS:darwin = "Darwin" LUA_TARGET_OS:darwin = "Darwin"
LUA_TARGET_OS_linux = "Linux" LUA_TARGET_OS:linux = "Linux"
LUA_TARGET_OS_linux-gnueabi = "Linux" LUA_TARGET_OS:linux-gnueabi = "Linux"
LUA_TARGET_OS:mingw32 = "Windows" LUA_TARGET_OS:mingw32 = "Windows"
# We don't want the lua buildsystem's compiler optimizations, or its # We don't want the lua buildsystem's compiler optimizations, or its
@@ -40,7 +40,7 @@ LUA_TARGET_OS:mingw32 = "Windows"
EXTRA_OEMAKE = "\ EXTRA_OEMAKE = "\
Q= E='@:' \ Q= E='@:' \
\ \
CCOPT= CCOPT:x86= CFLAGS= LDFLAGS= TARGET_STRIP='@:' \ CCOPT= CCOPT_x86= CFLAGS= LDFLAGS= TARGET_STRIP='@:' \
\ \
'TARGET_SYS=${LUA_TARGET_OS}' \ 'TARGET_SYS=${LUA_TARGET_OS}' \
\ \