svn commit: r344209 - stable/12/stand/liblua

Kyle Evans kevans at FreeBSD.org
Sat Feb 16 06:12:17 UTC 2019


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;" \


More information about the svn-src-all mailing list