Skip to content
Snippets Groups Projects
Commit 8ef4f7a3 authored by Khem Raj's avatar Khem Raj
Browse files

luajit: Fix override syntax


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

Signed-off-by: default avatarKhem Raj <raj.khem@gmail.com>
Cc: Martin Jansa <Martin.Jansa@gmail.com>
parent 566049b4
No related merge requests found
...@@ -30,8 +30,8 @@ BUILD_CC_ARCH:append = " ${@['-m32',''][d.getVar('SITEINFO_BITS') != '32']}" ...@@ -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" ...@@ -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}' \
\ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment