Date: Sat, 16 Feb 2019 06:12:17 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r344209 - stable/12/stand/liblua Message-ID: <201902160612.x1G6CHQl050909@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevans Date: Sat Feb 16 06:12:16 2019 New Revision: 344209 URL: https://svnweb.freebsd.org/changeset/base/344209 Log: MFC r339831 (imp): Move LUA_ROOT to /boot/lua While this is mostly unused today, this is a better place than /usr/local/lua. Modified: stable/12/stand/liblua/luaconf.h Directory Properties: stable/12/ (props changed) Modified: stable/12/stand/liblua/luaconf.h ============================================================================== --- stable/12/stand/liblua/luaconf.h Sat Feb 16 05:04:01 2019 (r344208) +++ stable/12/stand/liblua/luaconf.h Sat Feb 16 06:12:16 2019 (r344209) @@ -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;" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902160612.x1G6CHQl050909>