diff options
author | marcel <marcel@FreeBSD.org> | 1999-12-23 19:18:28 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-12-23 19:18:28 +0000 |
commit | 4448e3bd05118cef4555d4b62c24873cb6da72e2 (patch) | |
tree | e9d2e56590850d1b1539e665209c316ff0e1be02 /Makefile.inc1 | |
parent | 9319f70c59e5c3a6a63e1dc187cfaafdcb9b4b81 (diff) | |
download | FreeBSD-src-4448e3bd05118cef4555d4b62c24873cb6da72e2.zip FreeBSD-src-4448e3bd05118cef4555d4b62c24873cb6da72e2.tar.gz |
Don't build caesar as a tool. fortune(6) doesn't depend on it
anymore. Update comments and variable names as well to wipe out any
traces that may confuse people in the future.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index bc210ce..c91c1ed 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -114,7 +114,7 @@ OBJTREE= ${MAKEOBJDIRPREFIX} OBJTREE= ${MAKEOBJDIRPREFIX}/${MACHINE_ARCH} .endif WORLDTMP= ${OBJTREE}${.CURDIR}/${BUILD_ARCH} -# /usr/games added for fortune which depend on strfile and caesar. +# /usr/games added for fortune which depend on strfile STRICTTMPPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games TMPPATH= ${STRICTTMPPATH}:${PATH} @@ -385,11 +385,11 @@ installmost: # bootstrap-tools: Build tools needed for compatibility # .if exists(${.CURDIR}/games) && !defined(NOGAMES) -_games_tools= games/caesar games/fortune/strfile +_strfile= games/fortune/strfile .endif bootstrap-tools: -.for _tool in ${_games_tools} usr.bin/yacc usr.bin/colldef gnu/usr.bin/bison +.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef gnu/usr.bin/bison cd ${.CURDIR}/${_tool}; \ ${MAKE} obj; \ ${MAKE} depend; \ |