diff --git a/development/scons/scons_utils.py b/development/scons/scons_utils.py index afdfe00088..5da6e87704 100644 --- a/development/scons/scons_utils.py +++ b/development/scons/scons_utils.py @@ -87,7 +87,7 @@ def createResFromIcon(env, icon_file, rc_file): rc = open(rc_name, 'w') print >> rc, 'IDI_ICON1 ICON DISCARDABLE "%s"' % \ os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'development', 'win32', - 'packaging', 'icons', icon_file) + 'packaging', 'icons', icon_file).replace('\\', '\\\\') rc.close() return env.RES(rc_name) else: