diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-16 03:53:55 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-16 03:53:55 +0000 |
commit | 71e82815c71c00087beaba47b396f20795b0d74b (patch) | |
tree | b26e14f2d86486c1ae9a1ef8600e5cf9c6f1dfd7 /config.guess | |
parent | 7defa4f4c543634bd0a0adca38055f2ecc5de37d (diff) | |
download | emacs-71e82815c71c00087beaba47b396f20795b0d74b.tar.gz |
Use portable tr syntax.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 35bb3081020..5e0068dd279 100755 --- a/config.guess +++ b/config.guess @@ -322,7 +322,7 @@ EOF exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' | tr A-Z a-z + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' | tr '[A-Z]' '[a-z]' exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos |