diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-15 17:26:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-15 17:26:29 (GMT) |
commit | 5b9ecdec44bfbb360bead9d0af522bfecd10063e (patch) | |
tree | 9f2fd947b3277bb3fe296dcc6623c03d32591f9f /Source | |
parent | 8be3e4eeca49d7aee5dc2f31fcb0e84f91cfc75f (diff) | |
download | CMake-5b9ecdec44bfbb360bead9d0af522bfecd10063e.zip CMake-5b9ecdec44bfbb360bead9d0af522bfecd10063e.tar.gz CMake-5b9ecdec44bfbb360bead9d0af522bfecd10063e.tar.bz2 |
ENH: fix warning
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 2bd0cb2..bf80555 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -386,7 +386,7 @@ cmGlobalGenerator::EnableLanguage(std::vector<std::string>const& languages, // so that it will get tested the next time cmake is run if(!mf->IsOn(compilerWorks.c_str())) { - std::string fpath = rootBin; + fpath = rootBin; fpath += "/CMake"; fpath += lang; fpath += "Compiler.cmake"; |