diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 19:31:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 19:31:15 (GMT) |
commit | 2d5ddb07fd4c423303771a31326fd218bad99645 (patch) | |
tree | 755a7145eedea4957b49dee79d324fba743f9807 | |
parent | 3a2b963763b73bef7d5c6ef619bc6b953188139f (diff) | |
download | CMake-2d5ddb07fd4c423303771a31326fd218bad99645.zip CMake-2d5ddb07fd4c423303771a31326fd218bad99645.tar.gz CMake-2d5ddb07fd4c423303771a31326fd218bad99645.tar.bz2 |
output list bug
-rw-r--r-- | Source/cmMSDotNETGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMSDotNETGenerator.cxx b/Source/cmMSDotNETGenerator.cxx index 71682c6..69fd73a 100644 --- a/Source/cmMSDotNETGenerator.cxx +++ b/Source/cmMSDotNETGenerator.cxx @@ -1187,7 +1187,7 @@ void cmMSDotNETGenerator::WriteCustomRule(std::ostream& fout, } else { - first = true; + first = false; } fout << output->c_str(); } |