diff options
author | Colin Watson <cjwatson@debian.org> | 2004-05-20 12:42:16 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2004-05-20 12:42:16 +0000 |
commit | a199dc80414896716cc91bbdf20d11569f8f90ec (patch) | |
tree | 2d70aadf41c1113f12652b6e8cc4b17576ee4772 | |
parent | a34b51a0e35e5e72e48c1f8dce1c9cc41d9d625d (diff) |
Add ssh-keygen to openssh-server-udeb.
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/openssh-server-udeb.dirs | 1 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 7b658091c..ccc502a97 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,9 @@ | |||
1 | openssh (1:3.8.1p1-3) UNRELEASED; urgency=low | ||
2 | |||
3 | * Add ssh-keygen to openssh-server-udeb. | ||
4 | |||
5 | -- Colin Watson <cjwatson@debian.org> Thu, 20 May 2004 13:01:37 +0100 | ||
6 | |||
1 | openssh (1:3.8.1p1-2) unstable; urgency=low | 7 | openssh (1:3.8.1p1-2) unstable; urgency=low |
2 | 8 | ||
3 | * Add Catalan debconf template translation (thanks, Aleix Badia i Bosch; | 9 | * Add Catalan debconf template translation (thanks, Aleix Badia i Bosch; |
diff --git a/debian/openssh-server-udeb.dirs b/debian/openssh-server-udeb.dirs index e5fe80d83..f2b0bd9da 100644 --- a/debian/openssh-server-udeb.dirs +++ b/debian/openssh-server-udeb.dirs | |||
@@ -1,2 +1,3 @@ | |||
1 | usr/bin | ||
1 | usr/sbin | 2 | usr/sbin |
2 | var/run/sshd | 3 | var/run/sshd |
diff --git a/debian/rules b/debian/rules index 2c2ce4015..dd8b894a4 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 | 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 |
83 | touch build-udeb-stamp | 83 | touch build-udeb-stamp |
84 | 84 | ||
85 | clean: | 85 | clean: |
@@ -144,6 +144,7 @@ install: build | |||
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/sshd debian/openssh-server-udeb/usr/sbin/sshd | 146 | 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 | ||
147 | 148 | ||
148 | # Build architecture-independent files here. | 149 | # Build architecture-independent files here. |
149 | binary-indep: build install | 150 | binary-indep: build install |