diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 7d87a4564..2a5bbe071 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,11 @@ | |||
1 | openssh (1:4.1p1-6) UNRELEASED; urgency=low | ||
2 | |||
3 | * Fix one-character typo that meant the binaries in openssh-client and | ||
4 | openssh-server got recompiled with the wrong options during | ||
5 | 'debian/rules install' (closes: #317088, #317238, #317241). | ||
6 | |||
7 | -- Colin Watson <cjwatson@debian.org> Thu, 7 Jul 2005 10:48:41 +0100 | ||
8 | |||
1 | openssh (1:4.1p1-5) unstable; urgency=low | 9 | openssh (1:4.1p1-5) unstable; urgency=low |
2 | 10 | ||
3 | * Build-depend on libselinux1-dev on ppc64 too (closes: #314625). | 11 | * Build-depend on libselinux1-dev on ppc64 too (closes: #314625). |
diff --git a/debian/rules b/debian/rules index fad195dac..80c1ea45e 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -96,7 +96,7 @@ build-udeb-stamp: | |||
96 | mkdir -p build-udeb | 96 | mkdir -p build-udeb |
97 | cd build-udeb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --without-xauth --with-default-path=/usr/local/bin:/bin:/usr/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper | 97 | cd build-udeb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --without-xauth --with-default-path=/usr/local/bin:/bin:/usr/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper |
98 | # Debian's /var/log/btmp has inappropriate permissions. | 98 | # Debian's /var/log/btmp has inappropriate permissions. |
99 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-deb/config.h | 99 | perl -pi -e 's,.*#define USE_BTMP .*,/* #undef USE_BTMP */,' build-udeb/config.h |
100 | # Avoid libnsl linkage. Ugh. | 100 | # Avoid libnsl linkage. Ugh. |
101 | perl -pi -e 's/ +-lnsl//' build-udeb/config.status | 101 | perl -pi -e 's/ +-lnsl//' build-udeb/config.status |
102 | cd build-udeb && ./config.status | 102 | cd build-udeb && ./config.status |