2001-07-12 Keith Thompson <kst@sdsc.edu>

* config.guess: Strip trailing sub-version number from
	$UNAME_RELEASE on Cray YMP or Cray [A-Z]90 models.
This commit is contained in:
Ben Elliston 2001-07-11 23:54:49 +00:00
parent e2193ccc86
commit 75a07afb1f
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-07-12 Keith Thompson <kst@sdsc.edu>
* config.guess: Strip trailing sub-version number from
$UNAME_RELEASE on Cray YMP or Cray [A-Z]90 models.
2001-07-09 Mark Klein <mklein@dis.com>
* config.guess: Update MPE/iX to handle A and N class HPe3000.

7
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
timestamp='2001-07-09'
timestamp='2001-07-12'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@ -683,12 +683,13 @@ EOF
echo xmp-cray-unicos
exit 0 ;;
CRAY*Y-MP:*:*:*)
echo ymp-cray-unicos${UNAME_RELEASE}
echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
exit 0 ;;
CRAY*[A-Z]90:*:*:*)
echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
-e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
-e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
-e 's/\.[^.]*$/.X/'
exit 0 ;;
CRAY*TS:*:*:*)
echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'