summaryrefslogtreecommitdiffstats
path: root/fortune
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1996-02-29 00:21:16 +0000
committerjtc <jtc@NetBSD.org>1996-02-29 00:21:16 +0000
commitfb4bf232f26bcf58854d0ad1bca260452ef50301 (patch)
treeb28ea4fc4077349634b2221808c3594049b0d30a /fortune
parent46b902da5252697ebfccc29f3d5525122fbf1033 (diff)
downloadbsdgames-darwin-fb4bf232f26bcf58854d0ad1bca260452ef50301.tar.gz
bsdgames-darwin-fb4bf232f26bcf58854d0ad1bca260452ef50301.tar.zst
bsdgames-darwin-fb4bf232f26bcf58854d0ad1bca260452ef50301.zip
Use tr instead of caesar to generate fortunes-o
Diffstat (limited to 'fortune')
-rw-r--r--fortune/datfiles/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fortune/datfiles/Makefile b/fortune/datfiles/Makefile
index ddb60f27..a9911c1d 100644
--- a/fortune/datfiles/Makefile
+++ b/fortune/datfiles/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 1995/10/22 21:06:40 christos Exp $
+# $NetBSD: Makefile,v 1.15 1996/02/29 00:21:16 jtc Exp $
# @(#)Makefile 8.2 (Berkeley) 4/19/94
SRCS= fortunes fortunes2 startrek zippy
@@ -37,6 +37,6 @@ fortunes-o.dat: fortunes-o
${STRFILE} -rsx fortunes-o ${.TARGET}
fortunes-o: fortunes-o.${TYPE}
- /usr/games/caesar 13 < ${.ALLSRC} > ${.TARGET}
+ tr [a-zA-Z] [n-za-mN-ZA-M] < ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>