summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-07-10 12:39:00 +0000
committerColin Watson <cjwatson@debian.org>2004-07-10 12:39:00 +0000
commit47baf070161032fc38041646ecccb8b929ed860a (patch)
tree38c148afad78f0deb7511072f4afe7b038b254d6 /debian
parentd85a11e29f3dc55b159e0b3413c1309bf9c5095f (diff)
Add scp and sftp to openssh-client-udeb. It might not be very 'u' any more;
oh well.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
-rwxr-xr-xdebian/rules4
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 71a58cf2a..453116eff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,8 @@ openssh (1:3.8.1p1-5) UNRELEASED; urgency=low
10 * Apply patch from Darren Tucker to make the PAM authentication SIGCHLD 10 * Apply patch from Darren Tucker to make the PAM authentication SIGCHLD
11 handler kill the PAM thread if its waitpid() call returns 0, as well as 11 handler kill the PAM thread if its waitpid() call returns 0, as well as
12 the previous check for -1 (closes: #252676). 12 the previous check for -1 (closes: #252676).
13 * Add scp and sftp to openssh-client-udeb. It might not be very 'u' any
14 more; oh well.
13 15
14 -- Colin Watson <cjwatson@debian.org> Wed, 2 Jun 2004 14:26:18 -0300 16 -- Colin Watson <cjwatson@debian.org> Wed, 2 Jun 2004 14:26:18 -0300
15 17
diff --git a/debian/rules b/debian/rules
index 9a63fdce0..c62447db2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -79,7 +79,7 @@ build-udeb-stamp:
79 # Avoid libnsl linkage. Ugh. 79 # Avoid libnsl linkage. Ugh.
80 perl -pi -e 's/ +-lnsl//' build-udeb/config.status 80 perl -pi -e 's/ +-lnsl//' build-udeb/config.status
81 cd build-udeb && ./config.status 81 cd build-udeb && ./config.status
82 $(MAKE) -C build-udeb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' CFLAGS='-Os -g -Wall -DSSH_VERSION="\"$(SSH_VERSION)\""' SSH_KEYSIGN='/usr/lib/ssh-keysign' ssh sshd ssh-keygen 82 $(MAKE) -C build-udeb -j 2 ASKPASS_PROGRAM='/usr/bin/ssh-askpass' CFLAGS='-Os -g -Wall -DSSH_VERSION="\"$(SSH_VERSION)\""' SSH_KEYSIGN='/usr/lib/ssh-keysign' ssh scp sftp sshd ssh-keygen
83 touch build-udeb-stamp 83 touch build-udeb-stamp
84 84
85clean: 85clean:
@@ -143,6 +143,8 @@ install: build
143 install -o root -g root -m 755 -d debian/ssh/var/run/sshd 143 install -o root -g root -m 755 -d debian/ssh/var/run/sshd
144 144
145 install -m 755 build-udeb/ssh debian/openssh-client-udeb/usr/bin/ssh 145 install -m 755 build-udeb/ssh debian/openssh-client-udeb/usr/bin/ssh
146 install -m 755 build-udeb/scp debian/openssh-client-udeb/usr/bin/scp
147 install -m 755 build-udeb/sftp debian/openssh-client-udeb/usr/bin/sftp
146 install -m 755 build-udeb/sshd debian/openssh-server-udeb/usr/sbin/sshd 148 install -m 755 build-udeb/sshd debian/openssh-server-udeb/usr/sbin/sshd
147 install -m 755 build-udeb/ssh-keygen debian/openssh-server-udeb/usr/bin/ssh-keygen 149 install -m 755 build-udeb/ssh-keygen debian/openssh-server-udeb/usr/bin/ssh-keygen
148 150