* config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
authorEli Zaretskii <eliz@gnu.org>
Fri, 24 Apr 2009 14:27:20 +0000 (14:27 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 24 Apr 2009 14:27:20 +0000 (14:27 +0000)
consistency with config.sub.  (Update from upstream sources.)

config.guess

index e5716eea733e225984bd4634a1d655127dfa470c..3eda297e705f3b2b7d473948877305a932a725a2 100755 (executable)
@@ -1115,8 +1115,11 @@ EOF
     pc:*:*:*)
        # Left here for compatibility:
         # uname -m prints for DJGPP always 'pc', but it prints nothing about
-        # the processor, so we play safe by assuming i386.
-       echo i386-pc-msdosdjgpp
+        # the processor, so we play safe by assuming i586.
+       # Note: whatever this is, it MUST be the same as what config.sub
+       # prints for the "djgpp" host, or else GDB configury will decide that
+       # this is a cross-build.
+       echo i586-pc-msdosdjgpp
         exit ;;
     Intel:Mach:3*:*)
        echo i386-pc-mach3
This page took 0.026219 seconds and 4 git commands to generate.