From: RĂ©mi Denis-Courmont Date: Sat, 10 Apr 2010 16:50:12 +0000 (+0300) Subject: Explicitly error message if LUAC is not set X-Git-Tag: 1.1.0-pre1~53 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d455fdfb4c318166254930e5f5a54f79ab61b76c;p=vlc Explicitly error message if LUAC is not set --- diff --git a/share/Makefile.am b/share/Makefile.am index 59d424f199..a7d0b39e73 100644 --- a/share/Makefile.am +++ b/share/Makefile.am @@ -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 \