From 83415acf663279c5774e14196efe5b759e7c1174 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 3 Nov 2016 22:02:26 +0100 Subject: [PATCH] tcsh: use straightforward symlink commands This avoids a fork an a chdir. --- tcsh.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcsh.be0 b/tcsh.be0 index ebc437e2e..0629b30fd 100755 --- a/tcsh.be0 +++ b/tcsh.be0 @@ -63,8 +63,8 @@ mee_configure() { mee_install() { bee_install - ( cd "${D}"/"${BINDIR}"; ln -sv tcsh csh ) - ( cd "${D}"/"${MANDIR}/man1"; ln -sv tcsh.1 csh.1 ) + ln -s tcsh "$D/$BINDIR/csh" + ln -s csh.1 "$D/$MANDIR/man1/tcsh" } ## by default this may be 'make install DESTDIR="${D}"'