aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r--src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
index 6a71c4e9..ad2427e4 100644
--- a/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
+++ b/src/WixToolset.Core/ExtensibilityServices/ParseHelper.cs
@@ -875,7 +875,6 @@ namespace WixToolset.Core.ExtensibilityServices
875 { 875 {
876 if (!this.Messaging.EncounteredError) 876 if (!this.Messaging.EncounteredError)
877 { 877 {
878 var name = String.Concat("Wix4", customAction);
879 var suffix = "_X86"; 878 var suffix = "_X86";
880 879
881 switch (currentPlatform) 880 switch (currentPlatform)
@@ -894,7 +893,7 @@ namespace WixToolset.Core.ExtensibilityServices
894 break; 893 break;
895 } 894 }
896 895
897 this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, name + suffix); 896 this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, customAction + suffix);
898 } 897 }
899 } 898 }
900 899