summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-09 16:10:08 +0000
committerColin Watson <cjwatson@debian.org>2015-08-19 17:11:48 +0100
commit1237c8b43799156af8972c53c9ccc6b27140a284 (patch)
treee616994f3a2371d3f2b0072239b1f88a3be36a11
parent4a7ce48c3db45ebb9cb76fe21fc9e8811a43d840 (diff)
Fix picky lintian errors about slogin symlinks
Apparently this breaks some SVR4 packaging systems, so upstream can't win either way and opted to keep the status quo. We need this patch anyway. Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1728 Last-Update: 2013-09-14 Patch-Name: lintian-symlink-pickiness.patch
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 37cb02332..f52f90389 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -331,9 +331,9 @@ install-files:
331 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 331 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
332 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 332 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
333 -rm -f $(DESTDIR)$(bindir)/slogin 333 -rm -f $(DESTDIR)$(bindir)/slogin
334 ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin 334 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
335 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 335 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
336 ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 336 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
337 337
338install-sysconf: 338install-sysconf:
339 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ 339 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \