MikTeX's kpsewhich doesn't mention "kpathsea emulation" anymore.

On Cygwin, the most reliable way to tell what is the right path
separator to use is a direct check.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@38682 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2011-05-09 23:54:46 +00:00
parent 3649716644
commit 23891733a3
2 changed files with 4 additions and 3 deletions

View File

@ -73,9 +73,7 @@ else:
# Create a variable that holds the right character to be used by the scripts.
path_sep = os.pathsep
if sys.platform == 'cygwin':
# MikTeX's kpsewhich says "kpathsea emulation version x.x.x", whereas
# teTeX's simply "kpathsea version x.x.x".
if 'emulation' in cmdOutput('kpsewhich --version'):
if ';' in cmdOutput('kpsewhich --show-path=.tex'):
path_sep = ';'
else:
path_sep = ':'

View File

@ -78,6 +78,9 @@ What's new
- Display \utilde and \undertilde in formulas correctly (part of bug #6622).
- Restore the functionality of the TeX Information dialog on Cygwin if a
native Windows TeX engine is used.
* DOCUMENTATION AND LOCALIZATION