Commit d455fdfb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Explicitly error message if LUAC is not set

parent c4961610
......@@ -193,6 +193,10 @@ luac_verbose_ = $(luac_verbose_$(AM_DEFAULT_VERBOSITY))
luac_verbose_0 = @echo " LUAC $@";
.lua.luac:
$(AM_V_at)if test -z "$(LUAC)"; then \
echo "LUA byte compiler missing." >&2; \
exit 1 ; \
fi
$(AM_V_at)for f in $(EXTRA_DIST); do \
test "$(srcdir)" = . || f="$(srcdir)/$$f"; \
if test $$f = $<; then \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment