summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2011-09-06 14:56:29 +0100
committerColin Watson <cjwatson@debian.org>2011-09-06 14:56:29 +0100
commit978e62d6f14c60747bddef2cc72d66a9c8b83b54 (patch)
tree89400a44e42d84937deba7864e4964d6c7734da5 /Makefile.in
parent87c685b8c6a49814fd782288097b3093f975aa72 (diff)
parent3a7e89697ca363de0f64e0d5704c57219294e41c (diff)
* New upstream release (http://www.openssh.org/txt/release-5.9).
- Introduce sandboxing of the pre-auth privsep child using an optional sshd_config(5) "UsePrivilegeSeparation=sandbox" mode that enables mandatory restrictions on the syscalls the privsep child can perform. - Add new SHA256-based HMAC transport integrity modes from http://www.ietf.org/id/draft-dbider-sha2-mac-for-ssh-02.txt. - The pre-authentication sshd(8) privilege separation slave process now logs via a socket shared with the master process, avoiding the need to maintain /dev/log inside the chroot (closes: #75043, #429243, #599240). - ssh(1) now warns when a server refuses X11 forwarding (closes: #504757). - sshd_config(5)'s AuthorizedKeysFile now accepts multiple paths, separated by whitespace (closes: #76312). The authorized_keys2 fallback is deprecated but documented (closes: #560156). - ssh(1) and sshd(8): set IPv6 traffic class from IPQoS, as well as IPv4 ToS/DSCP (closes: #498297). - ssh-add(1) now accepts keys piped from standard input. E.g. "ssh-add - < /path/to/key" (closes: #229124). - Clean up lost-passphrase text in ssh-keygen(1) (closes: #444691). - Say "required" rather than "recommended" in unprotected-private-key warning (LP: #663455).
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in57
1 files changed, 15 insertions, 42 deletions
diff --git a/Makefile.in b/Makefile.in
index c18ba7099..7406aef6f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.320.4.1 2011/02/04 00:42:13 djm Exp $ 1# $Id: Makefile.in,v 1.325 2011/08/05 20:15:18 djm Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -26,7 +26,6 @@ ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
26SFTP_SERVER=$(libexecdir)/sftp-server 26SFTP_SERVER=$(libexecdir)/sftp-server
27SSH_KEYSIGN=$(libexecdir)/ssh-keysign 27SSH_KEYSIGN=$(libexecdir)/ssh-keysign
28SSH_PKCS11_HELPER=$(libexecdir)/ssh-pkcs11-helper 28SSH_PKCS11_HELPER=$(libexecdir)/ssh-pkcs11-helper
29RAND_HELPER=$(libexecdir)/ssh-rand-helper
30SSH_DATADIR=$(datadir)/ssh 29SSH_DATADIR=$(datadir)/ssh
31PRIVSEP_PATH=@PRIVSEP_PATH@ 30PRIVSEP_PATH=@PRIVSEP_PATH@
32SSH_PRIVSEP_USER=@SSH_PRIVSEP_USER@ 31SSH_PRIVSEP_USER=@SSH_PRIVSEP_USER@
@@ -40,8 +39,7 @@ PATHS= -DSSHDIR=\"$(sysconfdir)\" \
40 -D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \ 39 -D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \
41 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \ 40 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \
42 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \ 41 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \
43 -DSSH_RAND_HELPER=\"$(RAND_HELPER)\" \ 42 -D_PATH_SSH_DATADIR=\"$(SSH_DATADIR)\" \
44 -D_PATH_SSH_DATADIR=\"$(SSH_DATADIR)\"
45 43
46CC=@CC@ 44CC=@CC@
47LD=@LD@ 45LD=@LD@
@@ -63,10 +61,7 @@ LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
63EXEEXT=@EXEEXT@ 61EXEEXT=@EXEEXT@
64MANFMT=@MANFMT@ 62MANFMT=@MANFMT@
65 63
66INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@ 64TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT) ssh-vulnkey$(EXEEXT)
67INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
68
69TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} sftp-server$(EXEEXT) sftp$(EXEEXT) ssh-vulnkey$(EXEEXT)
70 65
71LIBSSH_OBJS=acss.o authfd.o authfile.o bufaux.o bufbn.o buffer.o \ 66LIBSSH_OBJS=acss.o authfd.o authfile.o bufaux.o bufbn.o buffer.o \
72 canohost.o channels.o cipher.o cipher-acss.o cipher-aes.o \ 67 canohost.o channels.o cipher.o cipher-acss.o cipher-aes.o \
@@ -97,17 +92,17 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
97 auth2-gss.o gss-serv.o gss-serv-krb5.o kexgsss.o\ 92 auth2-gss.o gss-serv.o gss-serv-krb5.o kexgsss.o\
98 loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \ 93 loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \
99 sftp-server.o sftp-common.o \ 94 sftp-server.o sftp-common.o \
100 roaming_common.o roaming_serv.o 95 roaming_common.o roaming_serv.o \
96 sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o
101 97
102MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-rand-helper.8.out ssh-keysign.8.out ssh-pkcs11-helper.8.out ssh-vulnkey.1.out sshd_config.5.out ssh_config.5.out 98MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-keysign.8.out ssh-pkcs11-helper.8.out ssh-vulnkey.1.out sshd_config.5.out ssh_config.5.out
103MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-rand-helper.8 ssh-keysign.8 ssh-pkcs11-helper.8 ssh-vulnkey.1 sshd_config.5 ssh_config.5 99MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-keysign.8 ssh-pkcs11-helper.8 ssh-vulnkey.1 sshd_config.5 ssh_config.5
104MANTYPE = @MANTYPE@ 100MANTYPE = @MANTYPE@
105 101
106CONFIGFILES=sshd_config.out ssh_config.out moduli.out 102CONFIGFILES=sshd_config.out ssh_config.out moduli.out
107CONFIGFILES_IN=sshd_config ssh_config moduli 103CONFIGFILES_IN=sshd_config ssh_config moduli
108 104
109PATHSUBS = \ 105PATHSUBS = \
110 -e 's|/etc/ssh/ssh_prng_cmds|$(sysconfdir)/ssh_prng_cmds|g' \
111 -e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \ 106 -e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \
112 -e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \ 107 -e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \
113 -e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \ 108 -e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \
@@ -127,7 +122,7 @@ PATHSUBS = \
127 122
128FIXPATHSCMD = $(SED) $(PATHSUBS) 123FIXPATHSCMD = $(SED) $(PATHSUBS)
129 124
130all: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) 125all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
131 126
132$(LIBSSH_OBJS): Makefile.in config.h 127$(LIBSSH_OBJS): Makefile.in config.h
133$(SSHOBJS): Makefile.in config.h 128$(SSHOBJS): Makefile.in config.h
@@ -178,9 +173,6 @@ sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o s
178sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-common.o sftp-glob.o progressmeter.o 173sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-common.o sftp-glob.o progressmeter.o
179 $(LD) -o $@ progressmeter.o sftp.o sftp-client.o sftp-common.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(LIBEDIT) 174 $(LD) -o $@ progressmeter.o sftp.o sftp-client.o sftp-common.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(LIBEDIT)
180 175
181ssh-rand-helper${EXEEXT}: $(LIBCOMPAT) libssh.a ssh-rand-helper.o
182 $(LD) -o $@ ssh-rand-helper.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
183
184ssh-vulnkey$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-vulnkey.o 176ssh-vulnkey$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-vulnkey.o
185 $(LD) -o $@ ssh-vulnkey.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 177 $(LD) -o $@ ssh-vulnkey.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
186 178
@@ -204,11 +196,6 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
204 conffile=`echo $@ | sed 's/.out$$//'`; \ 196 conffile=`echo $@ | sed 's/.out$$//'`; \
205 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@ 197 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
206 198
207ssh_prng_cmds.out: ssh_prng_cmds
208 if test ! -z "$(INSTALL_SSH_PRNG_CMDS)"; then \
209 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
210 fi
211
212# fake rule to stop make trying to compile moduli.o into a binary "moduli.o" 199# fake rule to stop make trying to compile moduli.o into a binary "moduli.o"
213moduli: 200moduli:
214 echo 201 echo
@@ -221,7 +208,7 @@ clean: regressclean
221distclean: regressclean 208distclean: regressclean
222 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 209 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
223 rm -f *.out core opensshd.init openssh.xml 210 rm -f *.out core opensshd.init openssh.xml
224 rm -f Makefile buildpkg.sh config.h config.status ssh_prng_cmds 211 rm -f Makefile buildpkg.sh config.h config.status
225 rm -f survey.sh openbsd-compat/regress/Makefile *~ 212 rm -f survey.sh openbsd-compat/regress/Makefile *~
226 rm -rf autom4te.cache 213 rm -rf autom4te.cache
227 (cd openbsd-compat && $(MAKE) distclean) 214 (cd openbsd-compat && $(MAKE) distclean)
@@ -232,6 +219,8 @@ distclean: regressclean
232veryclean: distclean 219veryclean: distclean
233 rm -f configure config.h.in *.0 220 rm -f configure config.h.in *.0
234 221
222cleandir: veryclean
223
235mrproper: veryclean 224mrproper: veryclean
236 225
237realclean: veryclean 226realclean: veryclean
@@ -248,9 +237,9 @@ distprep: catman-do
248 $(AUTORECONF) 237 $(AUTORECONF)
249 -rm -rf autom4te.cache 238 -rm -rf autom4te.cache
250 239
251install: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config 240install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config
252install-nokeys: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files install-sysconf 241install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf
253install-nosysconf: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) install-files 242install-nosysconf: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
254 243
255check-config: 244check-config:
256 -$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config 245 -$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config
@@ -271,9 +260,6 @@ install-files:
271 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keygen$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT) 260 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keygen$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
272 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keyscan$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT) 261 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keyscan$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
273 $(INSTALL) -m 0755 $(STRIP_OPT) sshd$(EXEEXT) $(DESTDIR)$(sbindir)/sshd$(EXEEXT) 262 $(INSTALL) -m 0755 $(STRIP_OPT) sshd$(EXEEXT) $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
274 if test ! -z "$(INSTALL_SSH_RAND_HELPER)" ; then \
275 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-rand-helper$(EXEEXT) $(DESTDIR)$(libexecdir)/ssh-rand-helper$(EXEEXT) ; \
276 fi
277 $(INSTALL) -m 4711 $(STRIP_OPT) ssh-keysign$(EXEEXT) $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT) 263 $(INSTALL) -m 4711 $(STRIP_OPT) ssh-keysign$(EXEEXT) $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
278 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-pkcs11-helper$(EXEEXT) $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT) 264 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-pkcs11-helper$(EXEEXT) $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT)
279 $(INSTALL) -m 0755 $(STRIP_OPT) sftp$(EXEEXT) $(DESTDIR)$(bindir)/sftp$(EXEEXT) 265 $(INSTALL) -m 0755 $(STRIP_OPT) sftp$(EXEEXT) $(DESTDIR)$(bindir)/sftp$(EXEEXT)
@@ -290,9 +276,6 @@ install-files:
290 $(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5 276 $(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5
291 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 277 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
292 ln -s ../$(mansubdir)8/sshd.8 $(DESTDIR)$(mandir)/$(mansubdir)5/authorized_keys.5 278 ln -s ../$(mansubdir)8/sshd.8 $(DESTDIR)$(mandir)/$(mansubdir)5/authorized_keys.5
293 if [ ! -z "$(INSTALL_SSH_RAND_HELPER)" ]; then \
294 $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8 ; \
295 fi
296 $(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1 279 $(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
297 $(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8 280 $(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
298 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 281 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
@@ -317,13 +300,6 @@ install-sysconf:
317 else \ 300 else \
318 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ 301 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
319 fi 302 fi
320 @if [ -f ssh_prng_cmds ] && [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
321 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
322 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
323 else \
324 echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
325 fi ; \
326 fi
327 @if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \ 303 @if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
328 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \ 304 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
329 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \ 305 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
@@ -370,7 +346,6 @@ host-key-force: ssh-keygen$(EXEEXT)
370uninstallall: uninstall 346uninstallall: uninstall
371 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config 347 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
372 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config 348 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
373 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
374 -rmdir $(DESTDIR)$(sysconfdir) 349 -rmdir $(DESTDIR)$(sysconfdir)
375 -rmdir $(DESTDIR)$(bindir) 350 -rmdir $(DESTDIR)$(bindir)
376 -rmdir $(DESTDIR)$(sbindir) 351 -rmdir $(DESTDIR)$(sbindir)
@@ -393,7 +368,6 @@ uninstall:
393 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT) 368 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
394 -rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT) 369 -rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
395 -rm -f $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT) 370 -rm -f $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT)
396 -rm -f $(DESTDIR)$(RAND_HELPER)$(EXEEXT)
397 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1 371 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
398 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1 372 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
399 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1 373 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
@@ -403,7 +377,6 @@ uninstall:
403 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1 377 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
404 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-vulnkey.1 378 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-vulnkey.1
405 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 379 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
406 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8
407 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8 380 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
408 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 381 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
409 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 382 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
@@ -473,7 +446,7 @@ survey: survey.sh ssh
473send-survey: survey 446send-survey: survey
474 mail portable-survey@mindrot.org <survey 447 mail portable-survey@mindrot.org <survey
475 448
476package: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) 449package: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
477 if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ 450 if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \
478 sh buildpkg.sh; \ 451 sh buildpkg.sh; \
479 fi 452 fi