diff options
author | ache <ache@FreeBSD.org> | 2003-08-04 15:31:57 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2003-08-04 15:31:57 +0000 |
commit | 6d81d82b79f267a7bec4d8b49f9d2fc0728afc85 (patch) | |
tree | 15619fdf5f79231a29c938172c45b3ab847de37b /games | |
parent | 8e2cd94d40f4e87cab53fecf27388d0547badc39 (diff) | |
download | FreeBSD-src-6d81d82b79f267a7bec4d8b49f9d2fc0728afc85.zip FreeBSD-src-6d81d82b79f267a7bec4d8b49f9d2fc0728afc85.tar.gz |
Use LANG=C before tr to be shure that ranges are correct
Diffstat (limited to 'games')
-rw-r--r-- | games/fortune/datfiles/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile index 024e134..5779410 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> |