diff options
author | Colin Watson <cjwatson@debian.org> | 2017-04-08 15:39:49 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-04-08 15:39:49 +0100 |
commit | 4a1f57fc5a6c8acd1dcd20efb866b623ff403ff9 (patch) | |
tree | b01660ddf2e022aaa674f9b68739420b0d67346d | |
parent | a18d56bd84f04292ec9178b4b17ef6d56a0c7aef (diff) |
Fix debian/adjust-openssl-dependencies to account for preferring libssl1.0-dev.
-rwxr-xr-x | debian/adjust-openssl-dependencies | 5 | ||||
-rw-r--r-- | debian/changelog | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/debian/adjust-openssl-dependencies b/debian/adjust-openssl-dependencies index 9daa9b415..5113ac164 100755 --- a/debian/adjust-openssl-dependencies +++ b/debian/adjust-openssl-dependencies | |||
@@ -5,7 +5,10 @@ | |||
5 | client=debian/openssh-client.substvars | 5 | client=debian/openssh-client.substvars |
6 | server=debian/openssh-server.substvars | 6 | server=debian/openssh-server.substvars |
7 | 7 | ||
8 | libssl_version="$(dpkg-query -W libssl-dev 2>/dev/null | cut -f2)" | 8 | libssl_version="$(dpkg-query -W libssl1.0-dev 2>/dev/null | cut -f2)" |
9 | if [ -z "$libssl_version" ]; then | ||
10 | libssl_version="$(dpkg-query -W libssl-dev 2>/dev/null | cut -f2)" | ||
11 | fi | ||
9 | if [ -z "$libssl_version" ]; then | 12 | if [ -z "$libssl_version" ]; then |
10 | echo "Can't find libssl-dev version; leaving dependencies alone." | 13 | echo "Can't find libssl-dev version; leaving dependencies alone." |
11 | exit 0 | 14 | exit 0 |
diff --git a/debian/changelog b/debian/changelog index 19b30d970..c40a80c02 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,10 @@ | |||
1 | openssh (1:7.5p1-3) UNRELEASED; urgency=medium | ||
2 | |||
3 | * Fix debian/adjust-openssl-dependencies to account for preferring | ||
4 | libssl1.0-dev. | ||
5 | |||
6 | -- Colin Watson <cjwatson@debian.org> Sat, 08 Apr 2017 15:39:13 +0100 | ||
7 | |||
1 | openssh (1:7.5p1-2) experimental; urgency=medium | 8 | openssh (1:7.5p1-2) experimental; urgency=medium |
2 | 9 | ||
3 | * Add missing header on Linux/s390. | 10 | * Add missing header on Linux/s390. |