diff options
author | Eric NOULARD <eric.noulard@gmail.com> | 2013-04-05 10:53:47 (GMT) |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2013-04-05 10:53:47 (GMT) |
commit | f055c997a5ee186eb2f264cf4425148745ba6514 (patch) | |
tree | 433a3a4071e231733d014c0fb39a303d970fee4f /Modules/CPackRPM.cmake | |
parent | bac5772b3959c5dfda36f242f8726266f605fe54 (diff) | |
download | CMake-f055c997a5ee186eb2f264cf4425148745ba6514.zip CMake-f055c997a5ee186eb2f264cf4425148745ba6514.tar.gz CMake-f055c997a5ee186eb2f264cf4425148745ba6514.tar.bz2 |
CPackRPM add /usr/lib64 to the list of builtin to-be-excluded path
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 bd649bb..09910ff 100644 --- a/Modules/CPackRPM.cmake +++ b/Modules/CPackRPM.cmake @@ -226,7 +226,7 @@ ##variable # CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST - list of path to be excluded. # Mandatory : NO -# Default : /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/include +# Default : /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/lib64 /usr/include # May be used to exclude path (directories or files) from the auto-generated # list of paths discovered by CPack RPM. The defaut value contains a reasonable # set of values if the variable is not defined by the user. If the variable @@ -689,7 +689,7 @@ if (CPACK_RPM_PACKAGE_DEBUG) endif() if (NOT DEFINED CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST) - set(CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/include) + set(CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST /etc /etc/init.d /usr /usr/share /usr/share/doc /usr/bin /usr/lib /usr/lib64 /usr/include) if (CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION) message("CPackRPM:Debug: Adding ${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION} to builtin omit list.") list(APPEND CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST "${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION}") |