svn commit: r242874 - head

Dimitry Andric dim at FreeBSD.org
Sat Nov 10 16:08:22 UTC 2012


Author: dim
Date: Sat Nov 10 16:08:21 2012
New Revision: 242874
URL: http://svnweb.freebsd.org/changeset/base/242874

Log:
  Work around pc98 tinderbox failures in sys/boot/pc98, by making sure a
  cross gcc gets built during the cross-tools stage.
  
  MFC after:	1 week
  X-MFC-With:	242706

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sat Nov 10 16:02:12 2012	(r242873)
+++ head/Makefile.inc1	Sat Nov 10 16:08:21 2012	(r242874)
@@ -1138,7 +1138,7 @@ _aicasm= sys/modules/aic7xxx/aicasm
 _share=	share/syscons/scrnmaps
 .endif
 
-.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no"
+.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98")
 _gcc_tools= gnu/usr.bin/cc/cc_tools
 .endif
 
@@ -1200,7 +1200,7 @@ _clang=		usr.bin/clang
 _clang_libs=	lib/clang
 .endif
 
-.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no"
+.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98")
 _cc=		gnu/usr.bin/cc
 .endif
 


More information about the svn-src-head mailing list