svn commit: r339831 - head/stand/liblua

Warner Losh imp at FreeBSD.org
Sun Oct 28 02:57:51 UTC 2018


Author: imp
Date: Sun Oct 28 02:57:50 2018
New Revision: 339831
URL: https://svnweb.freebsd.org/changeset/base/339831

Log:
  Move LUA_ROOT to /boot/lua
  
  While this is mostly unused today, this is a better place than
  /usr/local/lua.

Modified:
  head/stand/liblua/luaconf.h

Modified: head/stand/liblua/luaconf.h
==============================================================================
--- head/stand/liblua/luaconf.h	Sun Oct 28 00:58:39 2018	(r339830)
+++ head/stand/liblua/luaconf.h	Sun Oct 28 02:57:50 2018	(r339831)
@@ -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;" \


More information about the svn-src-head mailing list