diff options
author | brooks <brooks@FreeBSD.org> | 2013-03-01 03:25:43 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2013-03-01 03:25:43 +0000 |
commit | 1b36da001503ba894e5a06f0dd572ceda06943b4 (patch) | |
tree | 9db7d7ff723bd01e3350a2494a7d2cabdaaca0d6 /share/mk | |
parent | 9c2aecf6da5fb6aafba1ce1f1488a6b13c8a3174 (diff) | |
download | FreeBSD-src-1b36da001503ba894e5a06f0dd572ceda06943b4.zip FreeBSD-src-1b36da001503ba894e5a06f0dd572ceda06943b4.tar.gz |
Provide slightly more helpful feedback when we can't figure out what
compiler the user is using.
PR: misc/173914
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.compiler.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.compiler.mk b/share/mk/bsd.compiler.mk index c38c76e..2d648de 100644 --- a/share/mk/bsd.compiler.mk +++ b/share/mk/bsd.compiler.mk @@ -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 |