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:
Bo Peng 2007-09-06 05:05:28 +00:00
parent 74175c764b
commit c20795773e

View File

@ -1042,11 +1042,11 @@ result = utils.createConfigFile(conf,
'Date of release'), 'Date of release'),
('#define PROGRAM_SUFFIX "%s"' % program_suffix, ('#define PROGRAM_SUFFIX "%s"' % program_suffix,
'Program version 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'), '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'), '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'), 'Top source directory'),
('#define BOOST_ALL_NO_LIB 1', ('#define BOOST_ALL_NO_LIB 1',
'disable automatic linking of boost libraries.'), 'disable automatic linking of boost libraries.'),