From 9319f70c59e5c3a6a63e1dc187cfaafdcb9b4b81 Mon Sep 17 00:00:00 2001 From: marcel Date: Thu, 23 Dec 1999 19:09:59 +0000 Subject: 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 --- games/fortune/datfiles/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'games') 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 -- cgit v1.1