Source-Changes-HG archive

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

[src/trunk]: src/share/mk Make sure the tools built roff tools are first in t...



details:   https://anonhg.NetBSD.org/src/rev/f87180920f98
branches:  trunk
changeset: 518315:f87180920f98
user:      jmc <jmc%NetBSD.org@localhost>
date:      Wed Nov 28 05:03:18 2001 +0000

description:
Make sure the tools built roff tools are first in the path before calling groff
as it calls troff/etc without any leading pathnames. Otherwise the tools
version is fairly useless as the installed system version will be used to
build all manpages

diffstat:

 share/mk/bsd.own.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 539e41ce98a3 -r f87180920f98 share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Wed Nov 28 05:01:59 2001 +0000
+++ b/share/mk/bsd.own.mk       Wed Nov 28 05:03:18 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.225 2001/11/25 23:40:08 jmc Exp $
+#      $NetBSD: bsd.own.mk,v 1.226 2001/11/28 05:03:18 jmc Exp $
 
 .if !defined(_BSD_OWN_MK_)
 _BSD_OWN_MK_=1
@@ -101,7 +101,7 @@
 FC=            ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-g77
 GENCAT=                ${TOOLDIR}/bin/nbgencat
 #GRIND=                ${TOOLDIR}/bin/nbvgrind -f
-GROFF=         ${TOOLDIR}/bin/nbgroff
+GROFF=         PATH=${TOOLDIR}/lib/groff:$${PATH} ${TOOLDIR}/bin/nbgroff
 INDXBIB=       ${TOOLDIR}/bin/nbindxbib
 INSTALL=       STRIP=${STRIP:Q} ${TOOLDIR}/bin/nbinstall
 INSTALL_INFO=  ${TOOLDIR}/bin/nbinstall-info



Home | Main Index | Thread Index | Old Index