CVS commit: src/lib/libcurses/PSD.doc

2014-07-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jul 15 13:27:58 UTC 2014

Modified Files:
src/lib/libcurses/PSD.doc: Makefile

Log Message:
Use TOOL_VFONTEDPR


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/libcurses/PSD.doc/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libcurses/PSD.doc/Makefile
diff -u src/lib/libcurses/PSD.doc/Makefile:1.13 src/lib/libcurses/PSD.doc/Makefile:1.14
--- src/lib/libcurses/PSD.doc/Makefile:1.13	Tue Jul 15 07:19:08 2014
+++ src/lib/libcurses/PSD.doc/Makefile	Tue Jul 15 09:27:58 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.13 2014/07/15 11:19:08 christos Exp $
+#	$NetBSD: Makefile,v 1.14 2014/07/15 13:27:58 christos Exp $
 #	from: @(#)Makefile	8.2 (Berkeley) 5/23/94
 
 SECTION=reference/ref3
@@ -20,17 +20,10 @@ CLEANFILES+= ${CEXAMPLES} intro.2.tbl
 # bold font, and comments in italics.
 #
 
-
 # Don't re-run vgrind unless you want to patch the output files.
-# XXXBUILDSH: can we use TOOL_VGRIND here ?
-.if exists(/usr/libexec/vfontedpr)
-VFONT=	/usr/libexec/vfontedpr
-.else
-VFONT=	${TOOL_CAT}
-.endif
 
 .c.gr:
-	${VFONT} ${.IMPSRC} | grep -v "^'wh" > ${.TARGET}
+	${TOOL_VFONTEDPR} ${.IMPSRC} | grep -v "^'wh" > ${.TARGET}
 
 # Unfortunately our make doesn't handle single-suffix rules.
 intro.2.tbl: intro.2



CVS commit: src/lib/libcurses/PSD.doc

2014-07-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jul 15 11:19:08 UTC 2014

Modified Files:
src/lib/libcurses/PSD.doc: Makefile

Log Message:
stopgap for non-netbsd build.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/lib/libcurses/PSD.doc/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libcurses/PSD.doc/Makefile
diff -u src/lib/libcurses/PSD.doc/Makefile:1.12 src/lib/libcurses/PSD.doc/Makefile:1.13
--- src/lib/libcurses/PSD.doc/Makefile:1.12	Sat Jul  5 15:22:42 2014
+++ src/lib/libcurses/PSD.doc/Makefile	Tue Jul 15 07:19:08 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.12 2014/07/05 19:22:42 dholland Exp $
+#	$NetBSD: Makefile,v 1.13 2014/07/15 11:19:08 christos Exp $
 #	from: @(#)Makefile	8.2 (Berkeley) 5/23/94
 
 SECTION=reference/ref3
@@ -23,7 +23,12 @@ CLEANFILES+= ${CEXAMPLES} intro.2.tbl
 
 # Don't re-run vgrind unless you want to patch the output files.
 # XXXBUILDSH: can we use TOOL_VGRIND here ?
+.if exists(/usr/libexec/vfontedpr)
 VFONT=	/usr/libexec/vfontedpr
+.else
+VFONT=	${TOOL_CAT}
+.endif
+
 .c.gr:
 	${VFONT} ${.IMPSRC} | grep -v "^'wh" > ${.TARGET}