Author: bdrewery
Date: Sun Jul 24 18:28:14 2016
New Revision: 303273
URL: https://svnweb.freebsd.org/changeset/base/303273

Log:
  Fix empty WANT_COMPILER_TYPE when neither compiler is bootstrapped.
  
  Bug in r303272.
  
  MFC after:    3 days
  X-MFC-With:   r303272
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1  Sun Jul 24 18:05:05 2016        (r303272)
+++ head/Makefile.inc1  Sun Jul 24 18:28:14 2016        (r303273)
@@ -87,6 +87,8 @@ MK_CROSS_COMPILER=    no
 WANT_COMPILER_TYPE=    clang
 .elif ${MK_GCC_BOOTSTRAP} == "yes"
 WANT_COMPILER_TYPE=    gcc
+.else
+WANT_COMPILER_TYPE=
 .endif
 .if !defined(WANT_COMPILER_FREEBSD_VERSION)
 .if ${WANT_COMPILER_TYPE} == "clang"
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to