mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 22:17:41 +00:00
Fix previous commit. I really do not understand why windows FileName() can not have backslash (assertion at line 49 of support/FileName.cpp)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20094 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
74175c764b
commit
c20795773e
@ -1042,11 +1042,11 @@ result = utils.createConfigFile(conf,
|
||||
'Date of release'),
|
||||
('#define PROGRAM_SUFFIX "%s"' % program_suffix,
|
||||
'Program version suffix'),
|
||||
('#define LYX_ABS_INSTALLED_DATADIR "%s"' % env.subst('$LYX_DATA_DIR').replace('\\', '\\\\'),
|
||||
('#define LYX_ABS_INSTALLED_DATADIR "%s"' % env.subst('$LYX_DATA_DIR').replace('\\', '/'),
|
||||
'Hard coded system support directory'),
|
||||
('#define LYX_ABS_INSTALLED_LOCALEDIR "%s"' % env.subst('$LOCALEDIR').replace('\\', '\\\\'),
|
||||
('#define LYX_ABS_INSTALLED_LOCALEDIR "%s"' % env.subst('$LOCALEDIR').replace('\\', '/'),
|
||||
'Hard coded locale directory'),
|
||||
('#define LYX_ABS_TOP_SRCDIR "%s"' % env.subst('$TOP_SRCDIR').replace('\\', '\\\\'),
|
||||
('#define LYX_ABS_TOP_SRCDIR "%s"' % env.subst('$TOP_SRCDIR').replace('\\', '/'),
|
||||
'Top source directory'),
|
||||
('#define BOOST_ALL_NO_LIB 1',
|
||||
'disable automatic linking of boost libraries.'),
|
||||
|
Loading…
Reference in New Issue
Block a user