diff options
author | Mauro Sardara <msardara@cisco.com> | 2020-02-18 13:08:30 +0100 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2020-02-18 12:28:58 +0000 |
commit | fbe679d3c25a69ab6b238ebe896ba83e3c8ac6e4 (patch) | |
tree | 38dca9cbc5f73a05011b6cb83ad18147b471adbe /cmake/Modules/Packager.cmake | |
parent | e539441a59c53f790f273eb6f0df79b38a2776fb (diff) |
[HICN-527] Do not create Unspecified DEB/RPM package anymore.
Change-Id: Id79b3885ca02b24a4c480ec10a0b2a1330ff8604
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'cmake/Modules/Packager.cmake')
-rw-r--r-- | cmake/Modules/Packager.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/Modules/Packager.cmake b/cmake/Modules/Packager.cmake index 5e77d7de0..1edfd671d 100644 --- a/cmake/Modules/Packager.cmake +++ b/cmake/Modules/Packager.cmake @@ -106,7 +106,8 @@ macro(make_packages) get_next_version(${tag} next_version) get_cmake_property(components COMPONENTS) - get_cmake_property(CPACK_COMPONENTS_ALL COMPONENTS) + list(REMOVE_ITEM components "Unspecified") + set(CPACK_COMPONENTS_ALL ${components}) if(OS_ID MATCHES "debian" OR OS_ID_LIKE MATCHES "debian") set(CPACK_GENERATOR "DEB") |