]> git.sesse.net Git - vlc/commitdiff
Honor LUAC passed by the user.
authorChristophe Mutricy <xtophe@videolan.org>
Thu, 10 Jun 2010 18:56:54 +0000 (19:56 +0100)
committerChristophe Mutricy <xtophe@videolan.org>
Thu, 10 Jun 2010 21:06:19 +0000 (22:06 +0100)
As we use AC_PATH_PROG, if you want to force LUAC by specifying it on your command line you need to give a full path+exec_name. Which is a bit un friendly. So work-around this behaviour.

configure.ac

index ed368dd5e57185b61cae69749b239f9d7bf22ecf..eb0aeac7c79869fd26418087df2bce438c9e2d3b 100644 (file)
@@ -1612,7 +1612,7 @@ then
       AC_MSG_ERROR([Could not find lua. Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts. Use --disable-lua to ignore this error.])
   fi
   AC_ARG_VAR([LUAC], [LUA byte compiler])
-  AC_PATH_PROG(LUAC, luac, [false])
+  AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
   AS_IF([test "${ac_cv_path_LUAC}" = "false"], [
     AC_MSG_ERROR([Could not find the LUA byte compiler.])
   ])