aboutsummaryrefslogtreecommitdiff
path: root/games/fortune
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2003-08-04 15:31:57 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2003-08-04 15:31:57 +0000
commitca87b783b5c94e3fa0d762f89ce9bf8e7cd5b158 (patch)
tree15619fdf5f79231a29c938172c45b3ab847de37b /games/fortune
parent68aef77b2a9c58f99281bd7ad7cd7359da0a8e87 (diff)
downloadsrc-ca87b783b5c94e3fa0d762f89ce9bf8e7cd5b158.tar.gz
src-ca87b783b5c94e3fa0d762f89ce9bf8e7cd5b158.zip
Use LANG=C before tr to be shure that ranges are correct
Notes
Notes: svn path=/head/; revision=118434
Diffstat (limited to 'games/fortune')
-rw-r--r--games/fortune/datfiles/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile
index 024e134dab05..57794101fb27 100644
--- a/games/fortune/datfiles/Makefile
+++ b/games/fortune/datfiles/Makefile
@@ -37,6 +37,6 @@ fortunes-o.dat: fortunes-o
strfile -Csx ${.ALLSRC} ${.TARGET}
fortunes-o: fortunes-o.${TYPE}
- tr a-zA-Z n-za-mN-ZA-M < ${.ALLSRC} > ${.TARGET}
+ LANG=C tr a-zA-Z n-za-mN-ZA-M < ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>