svn commit: r247527 - head/share/mk

Brooks Davis brooks at FreeBSD.org
Fri Mar 1 03:25:43 UTC 2013


Author: brooks
Date: Fri Mar  1 03:25:43 2013
New Revision: 247527
URL: http://svnweb.freebsd.org/changeset/base/247527

Log:
  Provide slightly more helpful feedback when we can't figure out what
  compiler the user is using.
  
  PR:		misc/173914

Modified:
  head/share/mk/bsd.compiler.mk

Modified: head/share/mk/bsd.compiler.mk
==============================================================================
--- head/share/mk/bsd.compiler.mk	Fri Mar  1 03:05:08 2013	(r247526)
+++ head/share/mk/bsd.compiler.mk	Fri Mar  1 03:25:43 2013	(r247527)
@@ -14,7 +14,7 @@ COMPILER_TYPE:=	gcc
 .  elif ${_COMPILER_VERSION:Mclang}
 COMPILER_TYPE:=	clang
 .  else
-.error Unable to determine compiler type for ${CC}
+.error Unable to determine compiler type for ${CC}.  Consider setting COMPILER_TYPE.
 .  endif
 .  undef _COMPILER_VERSION
 . endif


More information about the svn-src-all mailing list