Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Oct 2018 02:57:50 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339831 - head/stand/liblua
Message-ID:  <201810280257.w9S2vots027512@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810280257.w9S2vots027512>