From owner-svn-src-all@FreeBSD.ORG Fri Mar 1 03:25:43 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DB0C8B12; Fri, 1 Mar 2013 03:25:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B80962C0; Fri, 1 Mar 2013 03:25:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r213Ph6Q067559; Fri, 1 Mar 2013 03:25:43 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r213PhXh067558; Fri, 1 Mar 2013 03:25:43 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201303010325.r213PhXh067558@svn.freebsd.org> From: Brooks Davis Date: Fri, 1 Mar 2013 03:25:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r247527 - head/share/mk X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Mar 2013 03:25:43 -0000 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