Merge topic 'cpack_rpm_mulit_prefix_fixup'

3d99355b CPackRPM: Fix recognition of absolute relocation paths
This commit is contained in:
Brad King 2015-02-10 09:42:21 -05:00 committed by CMake Topic Stage
commit eb8acf85d0
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ function(cpack_rpm_prepare_relocation_paths)
# set other path prefixes
foreach(RELOCATION_PATH ${RPM_RELOCATION_PATHS})
if(IS_ABSOLUTE "${RELOCATE_PATH}")
if(IS_ABSOLUTE "${RELOCATION_PATH}")
set(PREPARED_RELOCATION_PATH "${RELOCATION_PATH}")
else()
set(PREPARED_RELOCATION_PATH "${PATH_PREFIX}/${RELOCATION_PATH}")