diff options
author | Brad King <brad.king@kitware.com> | 2020-05-26 15:30:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-26 15:38:01 (GMT) |
commit | eb705b95319c2fbb9a31597765a41e58254533de (patch) | |
tree | c3a393ca0f2a86cfc1538419dd09a390c4628821 /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | 7c0e5fcf636b21fb2f422add09b2c1bd70d336b0 (diff) | |
download | CMake-eb705b95319c2fbb9a31597765a41e58254533de.zip CMake-eb705b95319c2fbb9a31597765a41e58254533de.tar.gz CMake-eb705b95319c2fbb9a31597765a41e58254533de.tar.bz2 |
Update links to gitlab.kitware.com repos to add `-/`
GitLab now uses a `/-/` component between the `group/project` part of
the URL and the `{issues,merge_requests,tree}` part so that it can
support `group/subgroup/project` with arbitrary depth.
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 42fd0ea..32b0ca9 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -723,7 +723,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( if (generator == "NMake Makefiles" || generator == "NMake Makefiles JOM") { // For Windows ConvertToOutputPath already adds quotes when required. // These need to be escaped, see - // https://gitlab.kitware.com/cmake/cmake/issues/13952 + // https://gitlab.kitware.com/cmake/cmake/-/issues/13952 std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile); command += " /NOLOGO /f "; command += makefileName; @@ -731,7 +731,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( command += target; } else if (generator == "MinGW Makefiles") { // no escaping of spaces in this case, see - // https://gitlab.kitware.com/cmake/cmake/issues/10014 + // https://gitlab.kitware.com/cmake/cmake/-/issues/10014 std::string const& makefileName = makefile; command += " -f \""; command += makefileName; |