summaryrefslogtreecommitdiffhomepage
path: root/luci.mk
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-06-27 16:43:36 +0200
committerGitHub <noreply@github.com>2018-06-27 16:43:36 +0200
commitccbb17d26031a802ae02a9bea4063eb65b59ed86 (patch)
tree07179770c19f3f1bb371b1eb83d32c2f6d9d1a00 /luci.mk
parent167d371305064dc1d4dd1d7d2aabfd76b9999a89 (diff)
parentb5d5e5bf13e572af7f1589a01bfd338691d5f063 (diff)
Merge pull request #1915 from Ansuel/upgrade
luci-base: update luasrcdiet
Diffstat (limited to 'luci.mk')
-rw-r--r--luci.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/luci.mk b/luci.mk
index c39f36cfb..6ece81c3d 100644
--- a/luci.mk
+++ b/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 luasrcdiet --noopt-binequiv -o "$$$$src.o" "$$$$src"; \
then mv "$$$$src.o" "$$$$src"; fi; \
done
endef