diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:15:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:15:59 +0000 |
commit | a3b3a56763e14898f43ab5b7dc69183adb236a4c (patch) | |
tree | 6aad89a7a4ed55bb3c4f3f24667de66558247854 /debian/rules | |
parent | Merging upstream version 4.2.6. (diff) | |
download | wireshark-a3b3a56763e14898f43ab5b7dc69183adb236a4c.tar.xz wireshark-a3b3a56763e14898f43ab5b7dc69183adb236a4c.zip |
Adding debian version 4.2.6-1.debian/4.2.6-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index bec1a95a..58e50c04 100755 --- a/debian/rules +++ b/debian/rules @@ -25,7 +25,11 @@ endif ifneq ($(filter focal,$(DEB_DISTRIBUTION)),) CONTROL_IN_SED_CMD := $(CONTROL_IN_SED_CMD)s/^ *libbcg729-dev/\# libbcg729-dev/;s/^ *libnghttp3-dev/\# libnghttp3-dev/; endif - +ifneq ($(filter noble oracular unstable sid testing trixie UNRELEASED,$(DEB_DISTRIBUTION)),) +CONTROL_IN_SED_CMD := $(CONTROL_IN_SED_CMD)s/@LIBSSH_DEV@/libssh-dev/; +else +CONTROL_IN_SED_CMD := $(CONTROL_IN_SED_CMD)s/@LIBSSH_DEV@/libssh-gcrypt-dev/; +endif # This has to be exported to make some magic below work. export DH_OPTIONS |