summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeBlocksGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-16 17:26:15 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-16 17:26:15 (GMT)
commit447b142b6a5ae8ee1669cb1a424619af808f1c17 (patch)
treeb96a8d4df424520c356bc1138de0c02485bce43c /Source/cmExtraCodeBlocksGenerator.cxx
parent6b07972fbdf7e8687577a430597e40e7e0b4831d (diff)
parent2bdba83e4bbd5435ee6faf5a2eedec4f0d0dfb0a (diff)
downloadCMake-447b142b6a5ae8ee1669cb1a424619af808f1c17.zip
CMake-447b142b6a5ae8ee1669cb1a424619af808f1c17.tar.gz
CMake-447b142b6a5ae8ee1669cb1a424619af808f1c17.tar.bz2
Merge topic 'issue-tracker-urls'
2bdba83e issues: update references to the CMake issue tracker
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index 3a9bb9b..0ded17a 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -750,7 +750,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
if (generator == "NMake Makefiles") {
// For Windows ConvertToOutputPath already adds quotes when required.
// These need to be escaped, see
- // http://public.kitware.com/Bug/view.php?id=13952
+ // https://gitlab.kitware.com/cmake/cmake/issues/13952
std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
command += " /NOLOGO /f ";
command += makefileName;
@@ -758,7 +758,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
command += target;
} else if (generator == "MinGW Makefiles") {
// no escaping of spaces in this case, see
- // http://public.kitware.com/Bug/view.php?id=10014
+ // https://gitlab.kitware.com/cmake/cmake/issues/10014
std::string makefileName = makefile;
command += " -f \"";
command += makefileName;