summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-07-07 09:58:40 +0000
committerColin Watson <cjwatson@debian.org>2005-07-07 09:58:40 +0000
commit61f24c1775e3fc9e5655a5ab223ab96a4f1244a7 (patch)
tree8b5d77c239aaf7c7347677e2c15844d6611d04b3 /debian
parent6771f9b263b42233b1e8a1f61fb8b882be2681b6 (diff)
Fix one-character typo that meant the binaries in openssh-client and
openssh-server got recompiled with the wrong options during 'debian/rules install' (closes: #317088, #317238, #317241).
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog8
-rwxr-xr-xdebian/rules2
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 @@
1openssh (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
1openssh (1:4.1p1-5) unstable; urgency=low 9openssh (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