diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 689f4d420..6efa1d679 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,10 +1,15 @@ | |||
1 | openssh (1:6.2p2-5) UNRELEASED; urgency=low | 1 | openssh (1:6.2p2-5) UNRELEASED; urgency=low |
2 | 2 | ||
3 | [ Colin Watson ] | ||
3 | * Document consequences of ssh-agent being setgid in ssh-agent(1); see | 4 | * Document consequences of ssh-agent being setgid in ssh-agent(1); see |
4 | #711623. | 5 | #711623. |
5 | * Use 'set -e' rather than '#! /bin/sh -e' in maintainer scripts and | 6 | * Use 'set -e' rather than '#! /bin/sh -e' in maintainer scripts and |
6 | ssh-argv0. | 7 | ssh-argv0. |
7 | 8 | ||
9 | [ Yolanda Robla ] | ||
10 | * debian/rules: Include real distribution in SSH_EXTRAVERSION instead of | ||
11 | hardcoding Debian (LP: #1195342). | ||
12 | |||
8 | -- Colin Watson <cjwatson@debian.org> Sat, 08 Jun 2013 22:12:27 +0100 | 13 | -- Colin Watson <cjwatson@debian.org> Sat, 08 Jun 2013 22:12:27 +0100 |
9 | 14 | ||
10 | openssh (1:6.2p2-4) unstable; urgency=low | 15 | openssh (1:6.2p2-4) unstable; urgency=low |
diff --git a/debian/rules b/debian/rules index 7db1e3c4b..cb7932e3b 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -41,8 +41,9 @@ ifeq ($(DEB_HOST_ARCH_OS),) | |||
41 | endif | 41 | endif |
42 | endif | 42 | endif |
43 | 43 | ||
44 | # Change the version string to include the Debian version | 44 | # Change the version string to reflect distribution |
45 | SSH_EXTRAVERSION := Debian-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') | 45 | DISTRIBUTION := $(shell dpkg-vendor --query vendor) |
46 | SSH_EXTRAVERSION := $(DISTRIBUTION)-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') | ||
46 | 47 | ||
47 | DISTRIBUTOR := $(shell if dpkg-vendor --derives-from Ubuntu 2>/dev/null; then echo Ubuntu; else echo Debian; fi) | 48 | DISTRIBUTOR := $(shell if dpkg-vendor --derives-from Ubuntu 2>/dev/null; then echo Ubuntu; else echo Debian; fi) |
48 | ifeq ($(DISTRIBUTOR),Ubuntu) | 49 | ifeq ($(DISTRIBUTOR),Ubuntu) |