summaryrefslogtreecommitdiffstats
path: root/bin/config.guess
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-01-29 00:16:36 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-01-29 00:16:36 (GMT)
commitee2b36ad7be6aed6fc14b04ff6aa9faacda78cd8 (patch)
tree807744446df1d2ac72f443d34306f9115c5eb999 /bin/config.guess
parentc00d3bcc929e18de27137d0b952127006f5cf692 (diff)
downloadhdf5-ee2b36ad7be6aed6fc14b04ff6aa9faacda78cd8.zip
hdf5-ee2b36ad7be6aed6fc14b04ff6aa9faacda78cd8.tar.gz
hdf5-ee2b36ad7be6aed6fc14b04ff6aa9faacda78cd8.tar.bz2
[svn-r1037] All IRIX (old 32bit OS) version 6.x can use the same configuration.
Replaced irix6.2 by irix6.x.
Diffstat (limited to 'bin/config.guess')
-rwxr-xr-xbin/config.guess5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/config.guess b/bin/config.guess
index 03f0dcd..c036193 100755
--- a/bin/config.guess
+++ b/bin/config.guess
@@ -150,9 +150,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
echo m68k-tektronix-bsd
exit 0 ;;
- *:IRIX64:*:*)
+ *:IRIX64:*:*) # IRIX64 all versions
echo mips-sgi-irix64
exit 0 ;;
+ *:IRIX*:6.*:*) # IRIX all 6.x versions
+ echo mips-sgi-irix6.x
+ exit 0 ;;
*:IRIX*:*:*)
echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
exit 0 ;;