From 9eb9fa2f2e83c62fc26e52b141218caf753bb3a9 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 3 Nov 2016 21:45:06 +0100 Subject: [PATCH] tcsh: install csh link into $BINDIR The build script incorrectly installed the csh symlink into $BEE_BINDIR, which is the bin directory of the "bee" command instead of into $BINDIR which is the bin directory of the package. Usually this is the same. --- tcsh.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcsh.be0 b/tcsh.be0 index 286ba34bc..ebc437e2e 100755 --- a/tcsh.be0 +++ b/tcsh.be0 @@ -63,7 +63,7 @@ mee_configure() { mee_install() { bee_install - ( cd "${D}"/"${BEE_BINDIR}"; ln -sv tcsh csh ) + ( cd "${D}"/"${BINDIR}"; ln -sv tcsh csh ) ( cd "${D}"/"${MANDIR}/man1"; ln -sv tcsh.1 csh.1 ) } ## by default this may be 'make install DESTDIR="${D}"'