games-fps/redeclipse: fix missing manual error, fix bug 646708

The symlink creation step uses a change directory command which breaks
the call to dodoc. Simply reversing the order solves the problem.

Closes: https://bugs.gentoo.org/646708
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7100
This commit is contained in:
Rob Levitsky
2018-02-06 16:54:13 -05:00
committed by Andreas Sturmlechner
parent 05765fa12c
commit f6d7fbd05f

View File

@@ -74,10 +74,10 @@ src_install() {
doman doc/man/redeclipse.6
fi
doman doc/man/redeclipse-server.6
dodoc readme.txt doc/examples/servinit.cfg
dobin "${FILESDIR}/redeclipse"
cd /usr/bin || die
dosym redeclipse redeclipse_server
doman doc/man/redeclipse-server.6
dodoc readme.txt doc/examples/servinit.cfg
}