summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-09 16:10:08 +0000
committerColin Watson <cjwatson@debian.org>2014-02-09 23:43:41 +0000
commit9ffc99332ff1bac6be9f0af430268e7981bd3dd2 (patch)
tree107f27b04164d7d4617f8d06538f1052eab95073
parentd5b4a3617c50cbe9526582979797248af5cbd9d5 (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 7849979cc..095f4ff32 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -289,9 +289,9 @@ install-files:
289 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 289 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
290 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 290 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
291 -rm -f $(DESTDIR)$(bindir)/slogin 291 -rm -f $(DESTDIR)$(bindir)/slogin
292 ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin 292 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
293 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 293 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
294 ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 294 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
295 295
296install-sysconf: 296install-sysconf:
297 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ 297 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \