diff options
author | Mauro Sardara <msardara@cisco.com> | 2021-04-06 09:47:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2021-04-06 09:47:12 +0000 |
commit | d6a155b63c37682a25b1f5a02c0189af5dd3edef (patch) | |
tree | c4d0a563f63ac85b1e0ca727fcdf9d2eda8d9c2f /extras/packethicn/cmake/Modules/Packaging.cmake | |
parent | 8cdce03a7cc7c643c9a853d10136463c25315f79 (diff) | |
parent | f72849911653de9239f3b32359f38b0c5ed90ac6 (diff) |
Merge "[HICN-692] Fix deb package installation of packethicn"
Diffstat (limited to 'extras/packethicn/cmake/Modules/Packaging.cmake')
-rw-r--r-- | extras/packethicn/cmake/Modules/Packaging.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/packethicn/cmake/Modules/Packaging.cmake b/extras/packethicn/cmake/Modules/Packaging.cmake index 4cd81f35e..5bea05c3c 100644 --- a/extras/packethicn/cmake/Modules/Packaging.cmake +++ b/extras/packethicn/cmake/Modules/Packaging.cmake @@ -21,11 +21,11 @@ set(${PACKETHICN}_DESCRIPTION ) set(${PACKETHICN}_DEB_DEPENDENCIES - "lib${LIBHICN} (>= stable_version), wireshark (>= 3.0), wireshark-dev (>= 3.0), libgnutls28-dev (>= 3.0), libgcrypt (>= 1.0)" - CACHE STRING "Dependencies for deb package." + "lib${LIBHICN} (>= stable_version), wireshark (>= ${Wireshark_VERSION}), wireshark (<< ${Wireshark_NEXT_VERSION})" + CACHE STRING "Dependencies for deb/rpm package." ) set(${PACKETHICN}_RPM_DEPENDENCIES - "lib${LIBHICN} >= stable_version, wireshark-devel >= 3.0" - CACHE STRING "Dependencies for rpm package." + "lib${LIBHICN} >= stable_version, wireshark >= ${Wireshark_VERSION}, wireshark < ${Wireshark_NEXT_VERSION}" + CACHE STRING "Dependencies for deb/rpm package." )
\ No newline at end of file |