From 3270607468ff313c9be9b2e2afbfbb96ec8695ee Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 16 Jul 1996 04:47:46 +0000 Subject: Fix previous change. Use sed's y command instead. --- config.guess | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.guess b/config.guess index 5e0068dd27..0613f737fa 100755 --- a/config.guess +++ b/config.guess @@ -322,7 +322,8 @@ 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/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos -- cgit v1.2.3