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>
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to