* config.guess: Fix typo. Avoid #elif (not in K&R 1).
authorPer Bothner <per@bothner.com>
Wed, 26 May 1993 06:06:37 +0000 (06:06 +0000)
committerPer Bothner <per@bothner.com>
Wed, 26 May 1993 06:06:37 +0000 (06:06 +0000)
Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.

ChangeLog
config.guess

index 13af2f5a68b30eff6a71d2c74d3e738c17c880f1..40b166acf19d928e0f475731e05ddfdead4c2207 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 25 23:03:11 1993  Per Bothner  (bothner@cygnus.com)
+
+       * config.guess:  Fix typo.  Avoid #elif (not in K&R 1).
+       Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
+
 Tue May 25 12:44:18 1993  Ian Lance Taylor  (ian@cygnus.com)
 
        * build-all.mk (all-cross): New target for Canadian Cross.
index eda690fca0ae1dd5098b6d9450643fcf4c893cdd..a9d5b1fb802517642a1d69f3ff1ba62924485dfc 100755 (executable)
@@ -17,7 +17,7 @@
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #
-# This script attempts to guess a cononical system name similar to
+# This script attempts to guess a canonical system name similar to
 # config.sub. If it succeeds, it prints the system name on stdout, and
 # exits with 0.  Otherwise, it prints an error message on stderr, and
 # exits with 1.
@@ -40,8 +40,8 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     alpha:OSF1:1.*:*)
        echo alpha-dec-osf${UNAME_RELEASE}
         exit 0 ;;
-    sun4*:SunOS:[5-9].*:*)
-       echo sparc-sun-solaris2
+    sun4*:SunOS:5.*:*)
+       echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
        exit 0 ;;
     sun4*:SunOS:*:*)
        echo sparc-sun-sunos${UNAME_RELEASE}
@@ -160,7 +160,8 @@ main()
 #if defined(sequent)
 #if defined(i386)
   printf("i386-sequent-dynix\n"); exit(0);
-#elif defined (ns32000)
+#endif
+#if defined (ns32000)
   printf("ns32k-sequent-dynix\n"); exit(0);
 #endif
 #endif
This page took 0.028373 seconds and 4 git commands to generate.