diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-08 19:03:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-08 19:03:24 +0000 |
commit | 9da9b4168ac97e19b7f9926b77662c5adf762097 (patch) | |
tree | b6a33dd09dfb5ea96e4aee4468ef239b77b21d36 | |
parent | Mark 0.7.5 stable on alpha (diff) | |
download | gentoo-2-9da9b4168ac97e19b7f9926b77662c5adf762097.tar.gz gentoo-2-9da9b4168ac97e19b7f9926b77662c5adf762097.tar.bz2 gentoo-2-9da9b4168ac97e19b7f9926b77662c5adf762097.zip |
error check file io in src_install
(Portage version: 2.0.51.22-r2)
-rw-r--r-- | games-strategy/netherearth/netherearth-0.52.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games-strategy/netherearth/netherearth-0.52.ebuild b/games-strategy/netherearth/netherearth-0.52.ebuild index 729ed3e18244..c2ec19b75d62 100644 --- a/games-strategy/netherearth/netherearth-0.52.ebuild +++ b/games-strategy/netherearth/netherearth-0.52.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/netherearth/netherearth-0.52.ebuild,v 1.1 2005/09/08 18:27:06 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/netherearth/netherearth-0.52.ebuild,v 1.2 2005/09/08 19:03:24 mr_bones_ Exp $ inherit eutils games @@ -60,13 +60,13 @@ src_unpack() { } src_install() { - dogamesbin nether_earth + dogamesbin nether_earth || die "dogamesbin failed" cd "${data}" # Install all game data insinto "${DATA_DIR}" - doins -r maps models sound textures + doins -r maps models sound textures || die "doins failed" dodoc readme.txt |