summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>1999-12-23 19:09:59 +0000
committermarcel <marcel@FreeBSD.org>1999-12-23 19:09:59 +0000
commit9319f70c59e5c3a6a63e1dc187cfaafdcb9b4b81 (patch)
tree16fc9a540dbbb1f4853171a4efdeb20de792be54 /games
parentc517a960f8f491354ad4b6430f1e48e8973690ae (diff)
downloadFreeBSD-src-9319f70c59e5c3a6a63e1dc187cfaafdcb9b4b81.zip
FreeBSD-src-9319f70c59e5c3a6a63e1dc187cfaafdcb9b4b81.tar.gz
Use tr(1) instead of caesar(6) to perform the rotation. This removes
the dependency on caesar which therefore doesn't need to be built by bootstrap-tools. Suggested by: des Previously mentioned by: Peter Jeremy <peter.jeremy@alcatel.com.au>
Diffstat (limited to 'games')
-rw-r--r--games/fortune/datfiles/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile
index 400da49..4d705c9 100644
--- a/games/fortune/datfiles/Makefile
+++ b/games/fortune/datfiles/Makefile
@@ -42,7 +42,6 @@ fortunes-o.dat: fortunes-o
strfile -Crsx ${.ALLSRC} ${.TARGET}
fortunes-o: fortunes-o.${TYPE}
- PATH=$$PATH:/usr/games:${.OBJDIR}/../../caesar \
- caesar 13 < ${.ALLSRC} > ${.TARGET}
+ tr a-zA-Z n-za-mN-ZA-M < ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud