Commit 79442056 by Karl Heuer

Fix previous change. Use sed's y command instead.

From-SVN: r12448
parent 4080630b
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment