mirror of git://anongit.mindrot.org/openssh.git
[Makefile.in] workaround for broken pakadd on some systems.
With "ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin" you wild end up with lrwxrwxrwx 1 root sys 4 Jul 8 18:43 slogin -> /ssh after the package was installed.
This commit is contained in:
parent
88177245cb
commit
2d0bf3dcfd
|
@ -1,6 +1,7 @@
|
|||
20020708
|
||||
- (tim) [openssh/contrib/solaris/buildpkg.sh] add PKG_INSTALL_ROOT to
|
||||
work in a jumpstart environment. patch by kbrint@rufus.net
|
||||
- (tim) [Makefile.in] workaround for broken pakadd on some systems.
|
||||
|
||||
20020707
|
||||
- (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
|
||||
|
@ -1313,4 +1314,4 @@
|
|||
- (stevesk) entropy.c: typo in debug message
|
||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||
|
||||
$Id: ChangeLog,v 1.2349 2002/07/09 02:02:10 tim Exp $
|
||||
$Id: ChangeLog,v 1.2350 2002/07/09 02:10:05 tim Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile.in,v 1.219 2002/07/07 20:30:46 tim Exp $
|
||||
# $Id: Makefile.in,v 1.220 2002/07/09 02:10:06 tim Exp $
|
||||
|
||||
# uncomment if you run a non bourne compatable shell. Ie. csh
|
||||
#SHELL = @SH@
|
||||
|
@ -247,9 +247,9 @@ install-files: scard-install
|
|||
@NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
|
||||
$(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
|
||||
-rm -f $(DESTDIR)$(bindir)/slogin
|
||||
ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
|
||||
ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
|
||||
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
|
||||
ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
|
||||
ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
|
||||
if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
|
||||
$(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue