diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-31 22:48:46 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-31 22:48:46 +0000 |
| commit | 381fba853708b10134bef02ea2fb4efd232e5ed4 (patch) | |
| tree | 2fc6f38a533aeb3b7c1e1ec95b66832247b0f93e | |
| parent | 2600131bd63b70eb0523a0cbfb034a92dddde963 (diff) | |
| parent | 79f08b9adf95d3bcfb16ce7df4686026b632eaed (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 |
