[patch] 3.7.1p2: slogin symlink fixes
YOSHIFUJI Hideaki / 吉藤英明
yoshfuji at linux-ipv6.org
Sun Nov 16 16:53:43 EST 2003
Hello.
In article <Pine.LNX.4.55.0311151915300.17760 at jurand.ds.pg.gda.pl> (at Sat, 15 Nov 2003 19:27:00 +0100 (CET)), "Maciej W. Rozycki" <macro at ds2.pg.gda.pl.ee.t.u-tokyo.ac.jp> says:
> -rm -f $(DESTDIR)$(bindir)/slogin
> - ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
> + cd $(DESTDIR)$(bindir) && $(LN_S) ssh$(EXEEXT) slogin$(EXEEXT)
Why not:
$(LN_S) ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin$(EXEEXT)
> -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
> - ln -s ./ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
> + cd $(DESTDIR)$(mandir)/$(mansubdir)1 && $(LN_S) ssh.1 slogin.1
Why not:
$(LN_S) ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
--yoshfuji
More information about the openssh-unix-dev
mailing list