1:5.8.1p1-3
[openssh.git] / debian / patches / lintian-symlink-pickiness.patch
1 Description: Fix picky lintian errors about slogin symlinks
2  Apparently this breaks some SVR4 packaging systems, so upstream can't win
3  either way and opted to keep the status quo.  We need this patch anyway.
4 Author: Colin Watson <cjwatson@debian.org>
5 Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1728
6 Last-Update: 2010-04-10
7
8 Index: b/Makefile.in
9 ===================================================================
10 --- a/Makefile.in
11 +++ b/Makefile.in
12 @@ -299,9 +299,9 @@
13         $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
14         $(INSTALL) -m 644 ssh-vulnkey.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-vulnkey.1
15         -rm -f $(DESTDIR)$(bindir)/slogin
16 -       ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
17 +       ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
18         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
19 -       ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
20 +       ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
21  
22  install-sysconf:
23         if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \