From 48fc711064e13cf6d45659b9711addea7ef2445b Mon Sep 17 00:00:00 2001 From: Deniz Bahadir Date: Tue, 30 Apr 2024 18:36:25 +0200 Subject: cmLocalGenerator: Fix comments in generated cmake_install.cmake file --- Source/cmLocalGenerator.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index c943591..7a41113 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -595,7 +595,7 @@ void cmLocalGenerator::GenerateInstallRules() "CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM")) { /* clang-format off */ fout << - "# Set default install directory permissions.\n" + "# Set OS and executable format for runtime-dependencies.\n" "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM)\n" " set(CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM \"" << *platform << "\")\n" @@ -611,7 +611,7 @@ void cmLocalGenerator::GenerateInstallRules() this->Makefile->GetDefinition("CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL")) { /* clang-format off */ fout << - "# Set default install directory permissions.\n" + "# Set tool for dependency-resolution of runtime-dependencies.\n" "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL)\n" " set(CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL \"" << *command << "\")\n" @@ -627,7 +627,7 @@ void cmLocalGenerator::GenerateInstallRules() "CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND")) { /* clang-format off */ fout << - "# Set default install directory permissions.\n" + "# Set path to tool for dependency-resolution of runtime-dependencies.\n" "if(NOT DEFINED CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND)\n" " set(CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND \"" << *command << "\")\n" @@ -644,7 +644,7 @@ void cmLocalGenerator::GenerateInstallRules() if (cmValue command = this->Makefile->GetDefinition("CMAKE_OBJDUMP")) { /* clang-format off */ fout << - "# Set default install directory permissions.\n" + "# Set path to fallback-tool for dependency-resolution.\n" "if(NOT DEFINED CMAKE_OBJDUMP)\n" " set(CMAKE_OBJDUMP \"" << *command << "\")\n" -- cgit v0.12