Skip to content

Commit

Permalink
fix 140: install only x86 bits in WOW mode on x64 machines
Browse files Browse the repository at this point in the history
  • Loading branch information
tjanczuk committed Feb 29, 2012
1 parent d88337c commit a595db4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup/iisnode-msi/iisnode.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@
<Feature Id="iisnode4iis" Title="Hosting node.js applications in IIS 7.x" Level="1" Description="IIS 7.x native module for hosting node.js applications in IIS">
<ComponentGroupRef Id="allfiles" />
<ComponentGroupRef Id="Product.Generated" />
<Condition Level="1">NOT WOW</Condition>
<Condition Level="0">WOW</Condition>
</Feature>

<?if $(var.isWin64) = "yes" ?>
<Feature Id="iisnode4iiswow" Title="Hosting node.js applications in IIS 7.x in WOW mode" Level="1" Description="IIS 7.x native module for hosting node.js applications in IIS in WOW mode">
<ComponentGroupRef Id="allfileswow" />
<ComponentGroupRef Id="Product.Generated" />
<Condition Level="1">WOW</Condition>
<Condition Level="0">NOT WOW</Condition>
</Feature>
<?endif?>

Expand Down

0 comments on commit a595db4

Please sign in to comment.