diff options
author | Brad King <brad.king@kitware.com> | 2017-03-23 17:48:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-23 17:48:17 (GMT) |
commit | 1adbe223cd10ee133f5137da028ed86ddef7cc4d (patch) | |
tree | 930575e6b4e120d1820d7539d594b70f42271aa5 /Modules/CPackRPM.cmake | |
parent | 40cf5e0e070365a1e68e128eeab6f4e80850ce91 (diff) | |
parent | 8dc23a438065b711b7b60b17c982f34a96631d1a (diff) | |
download | CMake-1adbe223cd10ee133f5137da028ed86ddef7cc4d.zip CMake-1adbe223cd10ee133f5137da028ed86ddef7cc4d.tar.gz CMake-1adbe223cd10ee133f5137da028ed86ddef7cc4d.tar.bz2 |
Merge branch 'cpack-rpm-correct-error-message-debug-lengths' into release
Diffstat (limited to 'Modules/CPackRPM.cmake')
-rw-r--r-- | Modules/CPackRPM.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CPackRPM.cmake b/Modules/CPackRPM.cmake index 036875b..87fa9dd 100644 --- a/Modules/CPackRPM.cmake +++ b/Modules/CPackRPM.cmake @@ -1472,8 +1472,8 @@ function(cpack_rpm_debugsymbol_check INSTALL_FILES WORKING_DIR) string(LENGTH "${CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX}/src_${index_}" debuginfo_dir_len) if(source_dir_len_ LESS debuginfo_dir_len) message(FATAL_ERROR "CPackRPM: source dir path '${source_dir_}' is" - " longer than debuginfo sources dir path '${CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX}/src_${index_}'!" - " Source dir path must be shorter than debuginfo sources dir path." + " shorter than debuginfo sources dir path '${CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX}/src_${index_}'!" + " Source dir path must be longer than debuginfo sources dir path." " Set CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX variable to a shorter value" " or make source dir path longer." " Required for debuginfo packaging. See documentation of" |