diff options
author | Marco Trinelli <marcotrinelli@gmail.com> | 2021-04-06 11:11:02 +0200 |
---|---|---|
committer | Marco Trinelli <marcotrinelli@gmail.com> | 2021-04-06 11:11:02 +0200 |
commit | f72849911653de9239f3b32359f38b0c5ed90ac6 (patch) | |
tree | 1b389371e4ce80dbc20a1966a9c947a40a6d4a7f /extras/packethicn/cmake/Modules/Packaging.cmake | |
parent | b8e7a5c2deed533eea900b7f76389bd52935f5fd (diff) |
[HICN-692] Fix deb package installation of packethicn
Signed-off-by: Marco Trinelli <marcotrinelli@gmail.com>
Change-Id: I3c916807904d78c17a3444808f904b9c0cf0a4f5
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 |