Fixed: Check for alternative rst2pseudoxml binary.

On some systems, the corresponding binary is named "rst2pseudoxml"
instead of "rst2pseudoxml.py".
This commit is contained in:
Tobias Schlitt 2013-02-07 09:23:50 +01:00
parent 6cf4581d57
commit 1d3bbf2aae

View File

@ -14,12 +14,13 @@
" rst2${x} tools in docutils.
function! SyntaxCheckers_rst_rst2pseudoxml_IsAvailable()
return executable("rst2pseudoxml.py")
return executable("rst2pseudoxml.py") || executable("rst2pseudoxml")
endfunction
function! SyntaxCheckers_rst_rst2pseudoxml_GetLocList()
let s:executable = executable("rst2pseudoxml.py") ? "rst2pseudoxml.py" : "rst2pseudoxml"
let makeprg = syntastic#makeprg#build({
\ 'exe': 'rst2pseudoxml.py',
\ 'exe': s:executable,
\ 'args': '--report=2 --exit-status=1',
\ 'tail': syntastic#util#DevNull() })