From: Bo Peng Date: Thu, 6 Sep 2007 04:18:12 +0000 (+0000) Subject: Forgot this: windows backslash needs special treatment X-Git-Tag: 1.6.10~8473 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=74175c764b6559786c0eabae29ce6d755cacae15;p=features.git Forgot this: windows backslash needs special treatment git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20093 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 7b139bcd78..9160212e29 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -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'), + ('#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'), + ('#define LYX_ABS_INSTALLED_LOCALEDIR "%s"' % env.subst('$LOCALEDIR').replace('\\', '\\\\'), 'Hard coded locale directory'), - ('#define LYX_ABS_TOP_SRCDIR "%s"' % env.subst('$TOP_SRCDIR'), + ('#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.'),