diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 20 |
2 files changed, 19 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 7ccc7d461..8d5fee834 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -4,6 +4,7 @@ openssh (1:3.8.1p1-2) UNRELEASED; urgency=low | |||
4 | closes: #248748). | 4 | closes: #248748). |
5 | * openssh-client-udeb and openssh-server-udeb depend on libnss-files-udeb | 5 | * openssh-client-udeb and openssh-server-udeb depend on libnss-files-udeb |
6 | (not yet uploaded). | 6 | (not yet uploaded). |
7 | * Restore ssh-askpass-gnome binary, lost by mistake. | ||
7 | 8 | ||
8 | -- Colin Watson <cjwatson@debian.org> Thu, 13 May 2004 10:00:44 +0100 | 9 | -- Colin Watson <cjwatson@debian.org> Thu, 13 May 2004 10:00:44 +0100 |
9 | 10 | ||
diff --git a/debian/rules b/debian/rules index e65f47d1e..168f3f13c 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -147,7 +147,8 @@ binary-indep: build install | |||
147 | # nothing to do | 147 | # nothing to do |
148 | 148 | ||
149 | # Build architecture-dependent files here. | 149 | # Build architecture-dependent files here. |
150 | binary-arch: binary-ssh binary-openssh-client-udeb binary-openssh-server-udeb | 150 | binary-arch: binary-ssh binary-ssh-askpass-gnome |
151 | binary-arch: binary-openssh-client-udeb binary-openssh-server-udeb | ||
151 | 152 | ||
152 | binary-ssh: DH_OPTIONS=-pssh | 153 | binary-ssh: DH_OPTIONS=-pssh |
153 | binary-ssh: build install | 154 | binary-ssh: build install |
@@ -185,6 +186,21 @@ endif | |||
185 | dh_md5sums | 186 | dh_md5sums |
186 | dh_builddeb | 187 | dh_builddeb |
187 | 188 | ||
189 | binary-ssh-askpass-gnome: DH_OPTIONS=-pssh-askpass-gnome | ||
190 | binary-ssh-askpass-gnome: build install | ||
191 | dh_testdir | ||
192 | dh_testroot | ||
193 | dh_installdocs | ||
194 | dh_installchangelogs ChangeLog | ||
195 | dh_strip | ||
196 | dh_compress | ||
197 | dh_fixperms | ||
198 | dh_installdeb | ||
199 | dh_shlibdeps | ||
200 | dh_gencontrol | ||
201 | dh_md5sums | ||
202 | dh_builddeb | ||
203 | |||
188 | binary-openssh-client-udeb: DH_OPTIONS=-popenssh-client-udeb | 204 | binary-openssh-client-udeb: DH_OPTIONS=-popenssh-client-udeb |
189 | binary-openssh-client-udeb: build install | 205 | binary-openssh-client-udeb: build install |
190 | dh_testdir | 206 | dh_testdir |
@@ -214,5 +230,5 @@ binary-openssh-server-udeb: build install | |||
214 | binary: binary-indep binary-arch | 230 | binary: binary-indep binary-arch |
215 | 231 | ||
216 | .PHONY: build clean binary-indep binary-arch binary install | 232 | .PHONY: build clean binary-indep binary-arch binary install |
217 | .PHONY: build-deb build-udeb binary-ssh | 233 | .PHONY: build-deb build-udeb binary-ssh binary-ssh-askpass-gnome |
218 | .PHONY: binary-openssh-client-udeb binary-openssh-server-udeb | 234 | .PHONY: binary-openssh-client-udeb binary-openssh-server-udeb |