From fe30a139a7cc715395becfdeb119bc6b2becce32 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 21 Mar 2013 21:53:22 +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/trunk@1155 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tools/make_distrib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/make_distrib.py b/tools/make_distrib.py index 04910b1bd..d6aa1e700 100644 --- a/tools/make_distrib.py +++ b/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):