From 569b326f75530fa6685ebade6a25e9074549e8c3 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 21 Mar 2013 21:53:42 +0000 Subject: [PATCH] Windows: Fix wrong Visual Studio Output Directory in binary distribution project files (issue #919). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1364@1156 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- cef1/tools/make_distrib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cef1/tools/make_distrib.py b/cef1/tools/make_distrib.py index 59d343528..461016a88 100644 --- a/cef1/tools/make_distrib.py +++ b/cef1/tools/make_distrib.py @@ -117,6 +117,7 @@ def fix_msvs_projects(): for file in files: data = read_file(file) data = data.replace('../../..\\build\\', '') + data = data.replace('..\\..\\..\\build\\', '') write_file(file, data) def run(command_line, working_dir):