diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-30 21:30:22 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-30 21:30:22 +0000 |
commit | fda35380199867ed542993ca48abeec3c9944b6b (patch) | |
tree | 25d71ba4e9ab8046902ff7ce12a4d0429f26d9c0 /libio/dbz | |
parent | 68da0d0a67e7728b16aa11f072290fa2632cd8ab (diff) | |
download | gcc-fda35380199867ed542993ca48abeec3c9944b6b.tar.gz |
* dbz/Makefile.in: Avoid assumptions about "tr" behaves when
LANG is set to something other than English.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22119 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/dbz')
-rw-r--r-- | libio/dbz/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/dbz/Makefile.in b/libio/dbz/Makefile.in index 6d6dc287485..0fd95641414 100644 --- a/libio/dbz/Makefile.in +++ b/libio/dbz/Makefile.in @@ -168,7 +168,7 @@ stamp-r5: stamp-r4 stamp-r6: stamp-r5 : try it without tags, case-insensitive, with case perversions ./rdbz -E 1000 -0 -p '0 b 1' dbase2 - tr '[A-M][n-z]' '[a-m][N-Z]' <dbase2 >dbase.ick + tr 'ABCDEFGHIJKLMnopqrstuvwxyz' 'abcdefghijklmNOPQRSTUVWXYZ' <dbase2 >dbase.ick ./rdbz -E 1000 -x dbase2 dbase.ick >dbase.temp cmp dbase.used dbase.temp rm -f dbase.temp dbase.ick |