From 16633f3a2d30b1ec4b95b696f0c431f22b0e5ec6 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 28 Oct 2018 02:57:50 +0000 Subject: [PATCH] Move LUA_ROOT to /boot/lua While this is mostly unused today, this is a better place than /usr/local/lua. --- stand/liblua/luaconf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stand/liblua/luaconf.h b/stand/liblua/luaconf.h index 8f338dd28e7..f3a1b4ec9ad 100644 --- a/stand/liblua/luaconf.h +++ b/stand/liblua/luaconf.h @@ -202,9 +202,9 @@ #else /* }{ */ -#define LUA_ROOT "/usr/local/" -#define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/" -#define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/" +#define LUA_ROOT "/boot/lua/" LUA_VDIR "/" +#define LUA_LDIR LUA_ROOT "share/" +#define LUA_CDIR LUA_ROOT "lib/" #ifndef LUA_PATH_DEFAULT #define LUA_PATH_DEFAULT \ LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \