Skip to content

Commit

Permalink
games-mud/tf: fix installation path
Browse files Browse the repository at this point in the history
An unremoved $GAMES_DATADIR entry caused some files to be installed to / by mistake

Gentoo-Bug: https://bugs.gentoo.org/590662

Package-Manager: portage-2.3.0
  • Loading branch information
austin987 committed Aug 8, 2016
1 parent 0157132 commit 851a339
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions games-mud/tf/tf-50_beta8-r2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ src_install() {
newman src/tf.1.nroffman tf.1
dodoc CHANGES CREDITS README

insinto "${GAMES_DATADIR}"/${PN}-lib
insinto /usr/share/${PN}-lib
# the application looks for this file here if /changes is called.
# see comments on bug #23274
doins CHANGES
insopts -m0755
doins tf-lib/*
if use doc ; then
cd ../${MY_P}-help
cd ../${MY_P}-help || die
dodoc -r *.html commands topics
cd ../${MY_P}
cd ../${MY_P} || die
fi
}

Expand Down

0 comments on commit 851a339

Please sign in to comment.