diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 7 |
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 @@ | |||
1 | openssh (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 | |||
1 | openssh (1:6.2p2-5) unstable; urgency=low | 9 | openssh (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 | |||
2 | Section: net | 2 | Section: net |
3 | Priority: standard | 3 | Priority: standard |
4 | Maintainer: Debian OpenSSH Maintainers <debian-ssh@lists.debian.org> | 4 | Maintainer: Debian OpenSSH Maintainers <debian-ssh@lists.debian.org> |
5 | Build-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 | 5 | Build-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 |
6 | Standards-Version: 3.8.4 | 6 | Standards-Version: 3.8.4 |
7 | Uploaders: Colin Watson <cjwatson@debian.org>, Matthew Vernon <matthew@debian.org> | 7 | Uploaders: Colin Watson <cjwatson@debian.org>, Matthew Vernon <matthew@debian.org> |
8 | Homepage: http://www.openssh.org/ | 8 | Homepage: 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 | ||
119 | autoreconf: | ||
120 | autoreconf -f -i | ||
121 | cp -f /usr/share/misc/config.guess /usr/share/misc/config.sub ./ | ||
122 | |||
123 | override_dh_autoreconf: | ||
124 | dh_autoreconf debian/rules -- autoreconf | ||
125 | |||
119 | override_dh_auto_configure: | 126 | override_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) |