Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2011-11-11 06:40:49 +0400
committerIgor Zinkovsky <igorzi@microsoft.com>2011-11-11 06:40:49 +0400
commitec90ede1cf11f78b746da04a35d4eb32c05b535b (patch)
tree741f05be7b4747435570dbdfbd8ff1322b265193 /tools
parent13324bf844d4527e91cf3777d3010aa4dca5f365 (diff)
fix msi builder
Diffstat (limited to 'tools')
-rw-r--r--tools/msvs/msi/nodemsi.wixproj4
-rw-r--r--tools/msvs/msi/product.wxs2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/msvs/msi/nodemsi.wixproj b/tools/msvs/msi/nodemsi.wixproj
index 42536249912..b51e360eafa 100644
--- a/tools/msvs/msi/nodemsi.wixproj
+++ b/tools/msvs/msi/nodemsi.wixproj
@@ -13,12 +13,12 @@
<NodeVersion Condition=" '$(NodeVersion)' == '' ">0.0.0.0</NodeVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <OutputPath>..\..\$(Configuration)\</OutputPath>
+ <OutputPath>..\..\..\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug;ProductVersion=$(NodeVersion)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <OutputPath>..\..\$(Configuration)\</OutputPath>
+ <OutputPath>..\..\..\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug;ProductVersion=$(NodeVersion)</DefineConstants>
</PropertyGroup>
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs
index 89a61295a1a..f07d9c037e2 100644
--- a/tools/msvs/msi/product.wxs
+++ b/tools/msvs/msi/product.wxs
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <?define sourcedir="$(var.ProjectDir)..\..\$(var.Configuration)\" ?>
+ <?define sourcedir="$(var.ProjectDir)..\..\..\$(var.Configuration)\" ?>
<Product Id="cc6c176e-e26c-48ec-8970-f58bd1d046cf"
Name="node.js"