Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/notes Do not pass common/macros on the command line ...



details:   https://anonhg.NetBSD.org/src/rev/f261e9d21d99
branches:  trunk
changeset: 846671:f261e9d21d99
user:      uwe <uwe%NetBSD.org@localhost>
date:      Wed Nov 27 23:19:13 2019 +0000

description:
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.

diffstat:

 distrib/notes/Makefile.inc |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r e2e054de0531 -r f261e9d21d99 distrib/notes/Makefile.inc
--- a/distrib/notes/Makefile.inc        Wed Nov 27 23:03:24 2019 +0000
+++ b/distrib/notes/Makefile.inc        Wed Nov 27 23:19:13 2019 +0000
@@ -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 <ross%NetBSD.org@localhost>
@@ -13,12 +13,13 @@
 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 \



Home | Main Index | Thread Index | Old Index