summaryrefslogtreecommitdiff
path: root/Makefile.in
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 16:18:54 +0000
commit6d50dc6d561af1bcf41eaf1dc69e7920abe5aa4b (patch)
treede725f0c21980f9d6f952cc7a793e26ae74c654d /Makefile.in
parent6342b4c70310da7f73e1d54ddae0edde990d95d8 (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
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7cd3a08f2..839abbd48 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -296,9 +296,9 @@ install-files:
296 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 296 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
297 $(INSTALL) -m 644 ssh-vulnkey.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-vulnkey.1 297 $(INSTALL) -m 644 ssh-vulnkey.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-vulnkey.1
298 -rm -f $(DESTDIR)$(bindir)/slogin 298 -rm -f $(DESTDIR)$(bindir)/slogin
299 ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin 299 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
300 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 300 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
301 ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 301 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
302 302
303install-sysconf: 303install-sysconf:
304 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ 304 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \