diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:10:08 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2015-12-03 17:05:06 +0000 |
commit | fd502e1259e2a5cb42e967eedffff6c14978f0db (patch) | |
tree | 6503d58645c33bb4d11049eb0d097e47f81b0b0f | |
parent | 648f76a35334b75f51f9a1178172a29e108a26bd (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.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 915c74065..e161d0e6c 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -330,9 +330,9 @@ install-files: | |||
330 | $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 | 330 | $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 |
331 | $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 | 331 | $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 |
332 | -rm -f $(DESTDIR)$(bindir)/slogin | 332 | -rm -f $(DESTDIR)$(bindir)/slogin |
333 | ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin | 333 | ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin |
334 | -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 | 334 | -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 |
335 | ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 | 335 | ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 |
336 | 336 | ||
337 | install-sysconf: | 337 | install-sysconf: |
338 | if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ | 338 | if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ |