mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
Globally replace $(HOST_DIR)/usr with $(HOST_DIR)
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '\$(HOST_DIR)/usr' | xargs sed -i 's%\$(HOST_DIR)/usr%$(HOST_DIR)%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
3b91bd4791
commit
685f44de98
@@ -11,7 +11,7 @@ LUAROCKS_LICENSE_FILES = COPYING
|
||||
|
||||
HOST_LUAROCKS_DEPENDENCIES = host-luainterpreter
|
||||
|
||||
LUAROCKS_CONFIG_DIR = $(HOST_DIR)/usr/etc/luarocks
|
||||
LUAROCKS_CONFIG_DIR = $(HOST_DIR)/etc/luarocks
|
||||
LUAROCKS_CONFIG_FILE = $(LUAROCKS_CONFIG_DIR)/config-$(LUAINTERPRETER_ABIVER).lua
|
||||
LUAROCKS_CFLAGS = $(TARGET_CFLAGS) -fPIC
|
||||
ifeq ($(BR2_PACKAGE_LUA_5_3),y)
|
||||
@@ -21,7 +21,7 @@ endif
|
||||
HOST_LUAROCKS_CONF_OPTS = \
|
||||
--prefix=$(HOST_DIR) \
|
||||
--sysconfdir=$(LUAROCKS_CONFIG_DIR) \
|
||||
--with-lua=$(HOST_DIR)/usr
|
||||
--with-lua=$(HOST_DIR)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LUAJIT),y)
|
||||
HOST_LUAROCKS_CONF_OPTS += --lua-suffix=jit
|
||||
|
||||
Reference in New Issue
Block a user