Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2015 19:56:55 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r281081 - in head/sys/boot: . common forth
Message-ID:  <201504041956.t34JutvD033343@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Apr  4 19:56:54 2015
New Revision: 281081
URL: https://svnweb.freebsd.org/changeset/base/281081

Log:
  Make sure forth manpages are only installed once.
  
  Differential Revision:	https://reviews.freebsd.org/D2224
  Reviewed by:	imp

Added:
  head/sys/boot/forth/Makefile   (contents, props changed)
Modified:
  head/sys/boot/Makefile
  head/sys/boot/common/Makefile.inc

Modified: head/sys/boot/Makefile
==============================================================================
--- head/sys/boot/Makefile	Sat Apr  4 19:31:29 2015	(r281080)
+++ head/sys/boot/Makefile	Sat Apr  4 19:56:54 2015	(r281081)
@@ -5,6 +5,7 @@
 .if ${MK_FORTH} != "no"
 # Build the add-in FORTH interpreter.
 SUBDIR+=		ficl
+SUBDIR+=		forth
 .endif
 
 .include <bsd.arch.inc.mk>

Modified: head/sys/boot/common/Makefile.inc
==============================================================================
--- head/sys/boot/common/Makefile.inc	Sat Apr  4 19:31:29 2015	(r281080)
+++ head/sys/boot/common/Makefile.inc	Sat Apr  4 19:56:54 2015	(r281081)
@@ -56,16 +56,6 @@ SRCS+=	pnp.c
 # Forth interpreter
 .if defined(BOOT_FORTH)
 SRCS+=	interp_forth.c
-MAN+=	../forth/beastie.4th.8
-MAN+=	../forth/brand.4th.8
-MAN+=	../forth/check-password.4th.8
-MAN+=	../forth/color.4th.8
-MAN+=	../forth/delay.4th.8
-MAN+=	../forth/loader.conf.5
-MAN+=	../forth/loader.4th.8
-MAN+=	../forth/menu.4th.8
-MAN+=	../forth/menusets.4th.8
-MAN+=	../forth/version.4th.8
 .endif
 
 .if defined(BOOT_PROMPT_123)

Added: head/sys/boot/forth/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/boot/forth/Makefile	Sat Apr  4 19:56:54 2015	(r281081)
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+MAN+=	beastie.4th.8 \
+	brand.4th.8 \
+	check-password.4th.8 \
+	color.4th.8 \
+	delay.4th.8 \
+	loader.conf.5 \
+	loader.4th.8 \
+	menu.4th.8 \
+	menusets.4th.8
+
+.include <bsd.prog.mk>



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