summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules7
3 files changed, 16 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 914903924..b8bc57a49 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
1openssh (1:6.2p2-6) UNRELEASED; urgency=low
2
3 * Update config.guess and config.sub automatically at build time.
4 dh_autoreconf does not take care of that by default because openssh does
5 not use automake.
6
7 -- Colin Watson <cjwatson@debian.org> Tue, 02 Jul 2013 22:53:47 +0100
8
1openssh (1:6.2p2-5) unstable; urgency=low 9openssh (1:6.2p2-5) unstable; urgency=low
2 10
3 [ Colin Watson ] 11 [ Colin Watson ]
diff --git a/debian/control b/debian/control
index e54ccae8e..82fdde9e6 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: openssh
2Section: net 2Section: net
3Priority: standard 3Priority: standard
4Maintainer: Debian OpenSSH Maintainers <debian-ssh@lists.debian.org> 4Maintainer: Debian OpenSSH Maintainers <debian-ssh@lists.debian.org>
5Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev (>= 1:1.2.3-1), libssl-dev (>= 0.9.8g), libpam0g-dev | libpam-dev, libgtk2.0-dev, libedit-dev, debhelper (>= 8.1.0~), libselinux1-dev [linux-any], libkrb5-dev | heimdal-dev, dpkg (>= 1.16.1~), libck-connector-dev, dh-autoreconf 5Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev (>= 1:1.2.3-1), libssl-dev (>= 0.9.8g), libpam0g-dev | libpam-dev, libgtk2.0-dev, libedit-dev, debhelper (>= 8.1.0~), libselinux1-dev [linux-any], libkrb5-dev | heimdal-dev, dpkg (>= 1.16.1~), libck-connector-dev, dh-autoreconf, autotools-dev
6Standards-Version: 3.8.4 6Standards-Version: 3.8.4
7Uploaders: Colin Watson <cjwatson@debian.org>, Matthew Vernon <matthew@debian.org> 7Uploaders: Colin Watson <cjwatson@debian.org>, Matthew Vernon <matthew@debian.org>
8Homepage: http://www.openssh.org/ 8Homepage: http://www.openssh.org/
diff --git a/debian/rules b/debian/rules
index cb7932e3b..d53bafa4c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -116,6 +116,13 @@ confflags_udeb += --with-ldflags='-Wl,--as-needed'
116%: 116%:
117 dh $@ --with=autoreconf 117 dh $@ --with=autoreconf
118 118
119autoreconf:
120 autoreconf -f -i
121 cp -f /usr/share/misc/config.guess /usr/share/misc/config.sub ./
122
123override_dh_autoreconf:
124 dh_autoreconf debian/rules -- autoreconf
125
119override_dh_auto_configure: 126override_dh_auto_configure:
120 dh_auto_configure -Bbuild-deb -- $(confflags) 127 dh_auto_configure -Bbuild-deb -- $(confflags)
121 dh_auto_configure -Bbuild-udeb -- $(confflags_udeb) 128 dh_auto_configure -Bbuild-udeb -- $(confflags_udeb)