~ubuntu-branches/ubuntu/lucid/openssh/lucid

« back to all changes in this revision

Viewing changes to contrib/cygwin/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-09-30 23:09:58 UTC
  • mfrom: (1.13.3 upstream) (29 hardy)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20080930230958-o6vsgn8c4mm959s0
Tags: 1:5.1p1-3
* Remove unnecessary ssh-vulnkey output in non-verbose mode when no
  compromised or unknown keys were found (closes: #496495).
* Configure with --disable-strip; dh_strip will deal with stripping
  binaries and will honour DEB_BUILD_OPTIONS (thanks, Bernhard R. Link;
  closes: #498681).
* Fix handling of zero-length server banners (thanks, Tomas Mraz; closes:
  #497026).

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
cygdocdir=$(docdir)/Cygwin
9
9
sysconfdir=/etc
10
10
defaultsdir=$(sysconfdir)/defaults/etc
 
11
inetdefdir=$(defaultsdir)/inetd.d
11
12
PRIVSEP_PATH=/var/empty
12
13
INSTALL=/usr/bin/install -c
13
14
 
27
28
remove-empty-dir:
28
29
        rm -rf $(DESTDIR)$(PRIVSEP_PATH)
29
30
 
 
31
install-inetd-config:
 
32
        $(srcdir)/mkinstalldirs $(DESTDIR)$(inetdefdir)
 
33
        $(INSTALL) -m 644 sshd-inetd  $(DESTDIR)$(inetdefdir)/sshd-inetd
 
34
 
30
35
install-sshdoc:
31
36
        $(srcdir)/mkinstalldirs $(DESTDIR)$(sshdocdir)
32
37
        $(INSTALL) -m 644 $(srcdir)/CREDITS $(DESTDIR)$(sshdocdir)/CREDITS
52
57
        $(INSTALL) -m 755 ssh-host-config $(DESTDIR)$(bindir)/ssh-host-config
53
58
        $(INSTALL) -m 755 ssh-user-config $(DESTDIR)$(bindir)/ssh-user-config
54
59
 
55
 
cygwin-postinstall: move-config-files remove-empty-dir install-doc install-scripts
 
60
cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts
56
61
        @echo "Cygwin specific configuration finished."