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 | 593939e0134680c9df6efa64309ba77fec6bb869 (patch) | |
tree | d4896d7eee560e04b4363b377e6461521c23a3ab /config.guess | |
parent | 01b79236524daa6cc8ceca1cd0ac0600de3b5d71 (diff) | |
download | emacs-593939e0134680c9df6efa64309ba77fec6bb869.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 |