Before the patch:
./config.sub.o m68k-next-openstep4
m68k-next-nextstep3                  # <- this is wrong
./config.sub.o i386-next-openstep4
i386-next-openstep4
./config.sub.o m68k-next-nextstep3
m68k-next-nextstep3

After the patch:
./config.sub m68k-next-openstep4 
m68k-next-openstep4
./config.sub i386-next-openstep4 
i386-next-openstep4
./config.sub m68k-next-nextstep3
m68k-next-nextstep3

Comment:
I belive that *-next-openstep* is limited to *-next-openstep4 (config.guess
emmit 1 digit version number and starting with version 5 the os was renamed
to rhapsody) but I didn't "hardcode" that in the patch.

ChangeLog:
2019-03-28  Urs Janßen <u...@tin.org>
       * config.sub recognize m68k-next-openstep* as openstep*, not nextstep3
--- config.sub.o	2019-03-28 21:52:46.476144364 +0100
+++ config.sub	2019-03-28 21:55:53.506810964 +0100
@@ -822,7 +822,9 @@
 		cpu=m68k
 		vendor=next
 		case $os in
-		    nextstep* )
+		    openstep*)
+		        ;;
+		    nextstep*)
 			;;
 		    ns2*)
 		      os=nextstep2
_______________________________________________
config-patches mailing list
config-patches@gnu.org
https://lists.gnu.org/mailman/listinfo/config-patches

Reply via email to