svn commit: r338086 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Mon Aug 20 02:40:11 UTC 2018


Author: kevans
Date: Mon Aug 20 02:40:10 2018
New Revision: 338086
URL: https://svnweb.freebsd.org/changeset/base/338086

Log:
  lualoader: Install all manpages
  
  Now that a complete set is written, save for one describing loader.lua,
  install all of them. This was not previously done as they were written to
  hopefully avoid confusion as bits and pieces of the overall system were
  undocumented.

Modified:
  head/stand/lua/Makefile

Modified: head/stand/lua/Makefile
==============================================================================
--- head/stand/lua/Makefile	Mon Aug 20 02:37:24 2018	(r338085)
+++ head/stand/lua/Makefile	Mon Aug 20 02:40:10 2018	(r338086)
@@ -2,6 +2,16 @@
 
 .include <bsd.init.mk>
 
+MAN=	cli.lua.8 \
+	color.lua.8 \
+	config.lua.8 \
+	core.lua.8 \
+	drawer.lua.8 \
+	hook.lua.8 \
+	menu.lua.8 \
+	password.lua.8 \
+	screen.lua.8
+
 FILESDIR=	/boot/lua
 FILES=	cli.lua \
 	color.lua \


More information about the svn-src-head mailing list