diff options
-rw-r--r-- | Dockerfile | 1 | ||||
-rw-r--r-- | ale_linters/c/clang.vim | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ RUN install_vim -tag v8.0.0027 -build \ ENV PACKAGES="\ bash \ git \ + make \ python \ py-pip \ " diff --git a/ale_linters/c/clang.vim b/ale_linters/c/clang.vim index 74279b7c..366cf2d2 100644 --- a/ale_linters/c/clang.vim +++ b/ale_linters/c/clang.vim @@ -12,7 +12,7 @@ endfunction function! ale_linters#c#clang#GetCommand(buffer) abort let l:cflags = [] if g:ale_c_clang_parse_makefile - let l:cflags = join(ale#c#ParseMakefile(a:buffer), ' ') . ' ' + let l:cflags = join(ale#c#ParseMakefile(a:buffer), ' ') endif if empty(l:cflags) let l:cflags = ale#c#IncludeOptions(ale#c#FindLocalHeaderPaths(a:buffer)) |