diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-31 21:01:06 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-31 21:01:06 +0000 |
| commit | 79f08b9adf95d3bcfb16ce7df4686026b632eaed (patch) | |
| tree | 77a5ceb764fe34a1eead466589692c20dc2dfe48 | |
| parent | ffa548ae3e01619b2dd07d722eb8a00a711928bd (diff) | |
Notes
| -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 d7763e4e06b4..dee6a1d8a288 100644 --- a/share/mk/bsd.compiler.mk +++ b/share/mk/bsd.compiler.mk @@ -138,7 +138,7 @@ COMPILER_TYPE:= clang . endif .endif .if !defined(COMPILER_VERSION) -COMPILER_VERSION!=echo ${_v:M[1-9].[0-9]*} | awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3;}' +COMPILER_VERSION!=echo "${_v:M[1-9].[0-9]*}" | awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3;}' .endif .undef _v .endif |
