Checker iasl: fix temporary directory reference.

This commit is contained in:
LCD 47 2016-08-01 08:07:16 +03:00
parent 3be03caa36
commit 4607092691
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif
let g:_SYNTASTIC_VERSION = '3.7.0-175'
let g:_SYNTASTIC_VERSION = '3.7.0-176'
lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1

View File

@ -18,10 +18,10 @@ let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_asl_iasl_GetLocList() dict
let tmpdir = syntastic#util#tmpdir()
let tmpdir = syntastic#util#tmpdir() . syntastic#util#slash()
let makeprg = self.makeprgBuild({
\ 'args': '-vi',
\ 'args_after': '-p ' . tmpdir })
\ 'args_after': ['-p ', tmpdir] })
let errorformat =
\ '%f(%l) : %trror %n - %m,' .