diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-06-04 16:36:38 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-06-04 16:36:38 +0000 |
commit | 006469e1905c7b8c7096562d13db2e7cbf230460 (patch) | |
tree | f04106eaf528b44b34daca70535138974a26172b /games-emulation | |
parent | Add CPAN::Meta to Perl 5.22 mask (diff) | |
download | gentoo-2-006469e1905c7b8c7096562d13db2e7cbf230460.tar.gz gentoo-2-006469e1905c7b8c7096562d13db2e7cbf230460.tar.bz2 gentoo-2-006469e1905c7b8c7096562d13db2e7cbf230460.zip |
replace nonfatal with file checking (bug #551170)
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/sdlmametools/ChangeLog | 6 | ||||
-rw-r--r-- | games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/games-emulation/sdlmametools/ChangeLog b/games-emulation/sdlmametools/ChangeLog index 6ed2daac5e24..f1c961f2b270 100644 --- a/games-emulation/sdlmametools/ChangeLog +++ b/games-emulation/sdlmametools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/sdlmametools # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.6 2015/06/04 16:14:10 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.7 2015/06/04 16:36:38 mr_bones_ Exp $ + + 04 Jun 2015; Michael Sterrett <mr_bones_@gentoo.org> + sdlmametools-0.148_p1.ebuild: + replace nonfatal with file checking (bug #551170) 04 Jun 2015; Michael Sterrett <mr_bones_@gentoo.org> sdlmametools-0.149.ebuild: diff --git a/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild b/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild index edccd5f1328d..6e814883dc1c 100644 --- a/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild +++ b/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild,v 1.4 2015/04/08 18:10:41 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.148_p1.ebuild,v 1.5 2015/06/04 16:36:38 mr_bones_ Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -116,7 +116,7 @@ src_compile() { src_install() { for i in chdman jedutil ldresample ldverify regrep romcmp testkeys ; do newgamesbin ${i} sdlmame-${i} - nonfatal newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1 + [[ -f src/osd/sdl/man/${i}.1 ]] && newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1 done prepgamesdirs |