diff options
author | Brad King <brad.king@kitware.com> | 2008-12-16 14:20:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-12-16 14:20:51 (GMT) |
commit | b14abe31a9a1956e306e3f90747389c920164128 (patch) | |
tree | dd2bbf9f3254b4c2a9ee77ce0112a921621e615a /Source | |
parent | 205fce61b66df1898a45fe49195101d7236790d5 (diff) | |
download | CMake-b14abe31a9a1956e306e3f90747389c920164128.zip CMake-b14abe31a9a1956e306e3f90747389c920164128.tar.gz CMake-b14abe31a9a1956e306e3f90747389c920164128.tar.bz2 |
BUG: Fix component-name test on installation
Generated cmake_install.cmake script code used MATCHES to compare
component names. This does not support characters considered special by
regular expression syntax in component names. This change uses STREQUAL
instead. See issue #8256.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmInstallGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx index cd15965..c2e0256 100644 --- a/Source/cmInstallGenerator.cxx +++ b/Source/cmInstallGenerator.cxx @@ -189,9 +189,9 @@ std::string cmInstallGenerator::CreateComponentTest(const char* component) { std::string result = "NOT CMAKE_INSTALL_COMPONENT OR " - "\"${CMAKE_INSTALL_COMPONENT}\" MATCHES \"^("; + "\"${CMAKE_INSTALL_COMPONENT}\" STREQUAL \""; result += component; - result += ")$\""; + result += "\""; return result; } |