Skip to content

Commit

Permalink
tcsh: install csh link into $BINDIR
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
donald committed Nov 3, 2016
1 parent 0e8b6ef commit 9eb9fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcsh.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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}"'
Expand Down

0 comments on commit 9eb9fa2

Please sign in to comment.