aboutsummaryrefslogtreecommitdiff
path: root/autoload/make/target.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/make/target.vim')
-rw-r--r--autoload/make/target.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/make/target.vim b/autoload/make/target.vim
index e3c0861..6e86d44 100644
--- a/autoload/make/target.vim
+++ b/autoload/make/target.vim
@@ -26,7 +26,7 @@ function! make#target#Make() abort
" If we found targets, :make them
for l:target in l:targets
- execute 'make! '.l:target
+ execute 'make! -C %:p:h '.l:target
endfor
endfunction