diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-08 22:53:15 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 13:08:16 -0600 |
commit | 0e1f5a4fcf29f979a1b6e6b67bfd2a2b0e6f4a3c (patch) | |
tree | 81a6ee3776e88862df17bced3bdd46e510aae3af | |
parent | 0106f99945266b2391b18a8389d056375cfff0b0 (diff) | |
download | wix-0e1f5a4fcf29f979a1b6e6b67bfd2a2b0e6f4a3c.tar.gz wix-0e1f5a4fcf29f979a1b6e6b67bfd2a2b0e6f4a3c.tar.bz2 wix-0e1f5a4fcf29f979a1b6e6b67bfd2a2b0e6f4a3c.zip |
Fix copy paste error.
-rw-r--r-- | src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index 7f718ad4..af3f40aa 100644 --- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | |||
@@ -127,7 +127,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
127 | switch (currentPlatform) | 127 | switch (currentPlatform) |
128 | { | 128 | { |
129 | case Platform.X86: | 129 | case Platform.X86: |
130 | if ((supportedPlatforms & BurnPlatforms.X64) == BurnPlatforms.X64) | 130 | if ((supportedPlatforms & BurnPlatforms.X86) == BurnPlatforms.X86) |
131 | { | 131 | { |
132 | suffix = "_X86"; | 132 | suffix = "_X86"; |
133 | } | 133 | } |