issues: update references to the CMake issue tracker

References to specific comments are left as-is since comments were not
migrated.
This commit is contained in:
Ben Boeckel
2016-08-12 15:06:35 -04:00
parent f99df80794
commit 2bdba83e4b
12 changed files with 18 additions and 17 deletions

View File

@@ -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;