Module Name: src
Committed By: uwe
Date: Wed Nov 27 23:19:13 UTC 2019
Modified Files:
src/distrib/notes: Makefile.inc
Log Message:
Do not pass common/macros on the command line as input.
common/main already sources them, so there's no point to process the
file again *after* the document has been formatted. Put it to SRCS so
that we still depend on it.
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/distrib/notes/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/notes/Makefile.inc
diff -u src/distrib/notes/Makefile.inc:1.49 src/distrib/notes/Makefile.inc:1.50
--- src/distrib/notes/Makefile.inc:1.49 Wed Nov 27 22:41:41 2019
+++ src/distrib/notes/Makefile.inc Wed Nov 27 23:19:13 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.49 2019/11/27 22:41:41 uwe Exp $
+# $NetBSD: Makefile.inc,v 1.50 2019/11/27 23:19:13 uwe Exp $
#
# Ross Harvey <[email protected]>
@@ -13,12 +13,13 @@ MKTOCS?=yes
M?= ${.CURDIR:T}
COMMON= ${.CURDIR}/../common
-MAIN= ${COMMON}/main ${COMMON}/macros ${EXTRA}
+MAIN= ${COMMON}/main ${EXTRA}
TARG= INSTALL
TARGS= ${TARG}.ps ${TARG}.txt ${TARG}.html ${TARG}.more
TOCS= ${TARG}.PostScript.toc ${TARG}.ASCII.toc ${TARG}.HTML.toc \
${TARG}.more.toc
-SRCS= ${MAIN} whatis ${COMMON}/contents hardware xfer prep \
+SRCS= ${MAIN} ${COMMON}/macros \
+ whatis ${COMMON}/contents hardware xfer prep \
${.CURDIR}/install ${COMMON}/postinstall upgrade \
${COMMON}/legal.common ${COMMON}/netboot \
${COMMON}/sysinst \