diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-04 17:55:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-04 17:55:15 (GMT) |
commit | 5be2ec1d47cd85969215769556114c6dd821cfeb (patch) | |
tree | 307c71613adb0655f88dde06c9c6fde5816b1581 /Source | |
parent | feb5efa1b0fa31f998aa84cbe140311c632ada78 (diff) | |
download | CMake-5be2ec1d47cd85969215769556114c6dd821cfeb.zip CMake-5be2ec1d47cd85969215769556114c6dd821cfeb.tar.gz CMake-5be2ec1d47cd85969215769556114c6dd821cfeb.tar.bz2 |
bug fix for vs6 custom commands
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 499a90e..0a12018 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 |