summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-09 16:10:08 +0000
committerColin Watson <cjwatson@debian.org>2014-10-07 14:27:21 +0100
commit248d3bb8de371b55aaf3a8f544c15f3a25eb7339 (patch)
treebb0e30ca51664a5c8dbb5911f99c44d0dbf8f897
parent19b0441502c07401dd6d418f8f81cc7f1a44ccb1 (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 a4402e96c..4eab574a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -315,9 +315,9 @@ install-files:
315 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 315 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
316 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 316 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
317 -rm -f $(DESTDIR)$(bindir)/slogin 317 -rm -f $(DESTDIR)$(bindir)/slogin
318 ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin 318 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
319 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 319 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
320 ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 320 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
321 321
322install-sysconf: 322install-sysconf:
323 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ 323 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \