mirror of
https://github.com/openwrt/luci
synced 2025-01-08 12:08:04 +08:00
luci-base: fix luasrcdiet
- Stage required libraries as well - Remove not existing make target - Override library search path Fixes:b5d5e5bf1
("luci-base: update luasrcdiet") Signed-off-by: Jo-Philipp Wich <jo@mein.io> (cherry picked from commit63fbf5a805
)
This commit is contained in:
parent
680a6d2ad3
commit
ea09513095
2
luci.mk
2
luci.mk
@ -153,7 +153,7 @@ LUCI_LIBRARYDIR = $(LUA_LIBRARYDIR)/luci
|
||||
|
||||
define SrcDiet
|
||||
$(FIND) $(1) -type f -name '*.lua' | while read src; do \
|
||||
if luasrcdiet --noopt-binequiv -o "$$$$src.o" "$$$$src"; \
|
||||
if LUA_PATH="$(STAGING_DIR_HOSTPKG)/lib/lua/5.1/?.lua" luasrcdiet --noopt-binequiv -o "$$$$src.o" "$$$$src"; \
|
||||
then mv "$$$$src.o" "$$$$src"; fi; \
|
||||
done
|
||||
endef
|
||||
|
@ -37,13 +37,13 @@ endef
|
||||
|
||||
define Host/Compile
|
||||
$(MAKE) -C src/ clean po2lmo
|
||||
$(MAKE) -C $(HOST_BUILD_DIR) bin/luasrcdiet
|
||||
endef
|
||||
|
||||
define Host/Install
|
||||
$(INSTALL_DIR) $(1)/bin
|
||||
$(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo
|
||||
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/luasrcdiet $(1)/bin/luasrcdiet
|
||||
$(CP) $(HOST_BUILD_DIR)/luasrcdiet $(1)/lib/lua/5.1/
|
||||
endef
|
||||
|
||||
$(eval $(call HostBuild))
|
||||
|
Loading…
Reference in New Issue
Block a user