diff options
| author | Karl Heuer | 1996-07-16 04:47:46 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-07-16 04:47:46 +0000 |
| commit | 9bec625c9e001c41d68c9521dd9f2d5af2bdd86a (patch) | |
| tree | 4b5f679fdbd19e8272aec6792572ec40c28caf42 | |
| parent | 593939e0134680c9df6efa64309ba77fec6bb869 (diff) | |
| download | emacs-9bec625c9e001c41d68c9521dd9f2d5af2bdd86a.tar.gz emacs-9bec625c9e001c41d68c9521dd9f2d5af2bdd86a.zip | |
Fix previous change. Use sed's y command instead.
| -rwxr-xr-x | config.guess | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 5e0068dd279..0613f737fa8 100755 --- a/config.guess +++ b/config.guess | |||
| @@ -322,7 +322,8 @@ EOF | |||
| 322 | exit 0 ;; | 322 | exit 0 ;; |
| 323 | CRAY*[A-Z]90:*:*:*) | 323 | CRAY*[A-Z]90:*:*:*) |
| 324 | echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | 324 | echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ |
| 325 | | sed -e 's/CRAY.*\([A-Z]90\)/\1/' | tr '[A-Z]' '[a-z]' | 325 | | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ |
| 326 | -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ | ||
| 326 | exit 0 ;; | 327 | exit 0 ;; |
| 327 | CRAY-2:*:*:*) | 328 | CRAY-2:*:*:*) |
| 328 | echo cray2-cray-unicos | 329 | echo cray2-cray-unicos |