mirror of
https://github.com/reactos/CMake.git
synced 2024-12-11 21:34:32 +00:00
CPackDeb: Loosen filename requirement to allow for .ipk
The OPKG packaging system uses deb like package files with an .ipk extension. Allow the DEB generator to be used in that context.
This commit is contained in:
parent
611f162532
commit
a17ef5748a
@ -73,7 +73,8 @@
|
||||
#
|
||||
# <PackageName>_<VersionNumber>-<DebianRevisionNumber>_<DebianArchitecture>.deb
|
||||
#
|
||||
# Alternatively provided package file name must end with ``.deb`` suffix.
|
||||
# Alternatively provided package file name must end
|
||||
# with either ``.deb`` or ``.ipk`` suffix.
|
||||
#
|
||||
# .. note::
|
||||
#
|
||||
@ -977,9 +978,9 @@ function(cpack_deb_prepare_package_vars)
|
||||
else()
|
||||
cmake_policy(PUSH)
|
||||
cmake_policy(SET CMP0010 NEW)
|
||||
if(NOT CPACK_DEBIAN_FILE_NAME MATCHES ".*\\.deb")
|
||||
if(NOT CPACK_DEBIAN_FILE_NAME MATCHES ".*\\.(deb|ipk)")
|
||||
cmake_policy(POP)
|
||||
message(FATAL_ERROR "'${CPACK_DEBIAN_FILE_NAME}' is not a valid DEB package file name as it must end with '.deb'!")
|
||||
message(FATAL_ERROR "'${CPACK_DEBIAN_FILE_NAME}' is not a valid DEB package file name as it must end with '.deb' or '.ipk'!")
|
||||
endif()
|
||||
cmake_policy(POP)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user