summaryrefslogtreecommitdiffstats
path: root/build/wix/mixxx.wxs
diff options
context:
space:
mode:
authorSebastien Blaisot <sebastien@blaisot.org>2015-10-12 07:41:16 +0200
committerSebastien Blaisot <sebastien@blaisot.org>2015-10-12 07:41:16 +0200
commit86e32f9b094834f3355b73f0508b9b6a6d0664fe (patch)
tree72b968a430dee8692512dd016d7b1d1d46f0c159 /build/wix/mixxx.wxs
parentfc2cfb7fb48f56e521138d4fc8dfde193b635428 (diff)
(wix) correct xml conditionnals
Diffstat (limited to 'build/wix/mixxx.wxs')
-rw-r--r--build/wix/mixxx.wxs8
1 files changed, 6 insertions, 2 deletions
diff --git a/build/wix/mixxx.wxs b/build/wix/mixxx.wxs
index e5f3f3f27c..abd7b5ab90 100644
--- a/build/wix/mixxx.wxs
+++ b/build/wix/mixxx.wxs
@@ -211,15 +211,19 @@
<!-- Other bitwidth already installed -->
<Property Id="MyWarningText3" Value=' ' />
+ <?if $(var.Platform) = x86 ?>
<SetProperty Id="MyWarningText3"
After="SetMyWarningText2"
- <?if $(var.Platform) = x86 ?>
Value="!(loc.bitWidthMismatch64)">
+ OTHERBITWIDTHINSTALLED
+ </SetProperty>
<?else?>
+ <SetProperty Id="MyWarningText3"
+ After="SetMyWarningText2"
Value="!(loc.bitWidthMismatch32)">
- <?endif?>
OTHERBITWIDTHINSTALLED
</SetProperty>
+ <?endif?>
<SetProperty Id="MyWarningText" After="SetMyWarningText3" Value="[MyWarningText1]&#13;&#10;&#13;&#10;[MyWarningText2]&#13;&#10;&#13;&#10;[MyWarningText3]" />