diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-01-04 03:33:11 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-01-04 03:33:11 +0000 |
commit | 9ad81233e766b03c1e8dd267e13eecac42d65228 (patch) | |
tree | 429e7060be8750568f93c042743b2c787b2219f5 /app-emulation/softgun | |
parent | Mask app-doc/dox (diff) | |
download | gentoo-2-9ad81233e766b03c1e8dd267e13eecac42d65228.tar.gz gentoo-2-9ad81233e766b03c1e8dd267e13eecac42d65228.tar.bz2 gentoo-2-9ad81233e766b03c1e8dd267e13eecac42d65228.zip |
Die when make fails.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/softgun')
-rw-r--r-- | app-emulation/softgun/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/softgun/softgun-0.16.ebuild | 8 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-emulation/softgun/ChangeLog b/app-emulation/softgun/ChangeLog index f9cb3226e21a..76874defc6dd 100644 --- a/app-emulation/softgun/ChangeLog +++ b/app-emulation/softgun/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/softgun -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.8 2009/01/03 16:31:31 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.9 2010/01/04 03:33:11 flameeyes Exp $ + + 04 Jan 2010; Diego E. Pettenò <flameeyes@gentoo.org> softgun-0.16.ebuild: + Die when make fails. *softgun-0.16 (03 Jan 2009) diff --git a/app-emulation/softgun/softgun-0.16.ebuild b/app-emulation/softgun/softgun-0.16.ebuild index 5f4e1be5de13..430c2cd389d3 100644 --- a/app-emulation/softgun/softgun-0.16.ebuild +++ b/app-emulation/softgun/softgun-0.16.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v 1.1 2009/01/03 16:31:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v 1.2 2010/01/04 03:33:11 flameeyes Exp $ inherit toolchain-funcs @@ -22,11 +22,11 @@ src_unpack() { } src_compile() { - emake CC="$(tc-getCC)" + emake CC="$(tc-getCC)" || die } src_install() { dodir /usr/bin - emake install prefix="${D}/usr" + emake install prefix="${D}/usr" || die dodoc README configs/*.sg } |