From 5be2ec1d47cd85969215769556114c6dd821cfeb Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 4 Jun 2003 13:55:15 -0400 Subject: [PATCH] bug fix for vs6 custom commands --- Source/cmLocalVisualStudio6Generator.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 499a90e6e..0a120181c 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -626,7 +626,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, if (!init) { // header stuff - customRuleCode = "PreLink_Cmds="; + customRuleCode += "PreLink_Cmds="; init = true; } else @@ -645,7 +645,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, if (!init) { // header stuff - customRuleCode = "PreLink_Cmds="; + customRuleCode += "PreLink_Cmds="; init = true; } else @@ -666,7 +666,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, if (!init) { // header stuff - customRuleCode = "PostBuild_Cmds="; + customRuleCode += "PostBuild_Cmds="; init = true; } else