ulm 14/08/30 09:51:19 Modified: skel.ebuild Log: Remove die statements, they are redundant since EAPI 4.
Revision Changes Path 1.71 skel.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?rev=1.71&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?rev=1.71&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?r1=1.70&r2=1.71 Index: skel.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/skel.ebuild,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- skel.ebuild 18 Aug 2014 18:40:32 -0000 1.70 +++ skel.ebuild 30 Aug 2014 09:51:19 -0000 1.71 @@ -147,7 +147,7 @@ # make to a single process. The -j1 is a visual clue to others # that the makefiles have bugs that have been worked around. - #emake || die + #emake #} # The following src_install function is implemented as default by portage, so @@ -159,7 +159,7 @@ # anything outside of DESTDIR; do this by reading and # understanding the install part of the Makefiles. # This is the preferred way to install. - #emake DESTDIR="${D}" install || die + #emake DESTDIR="${D}" install # When you hit a failure with emake, do not just use make. It is # better to fix the Makefiles to allow proper parallelization. @@ -175,11 +175,11 @@ # mandir="${D}"/usr/share/man \ # infodir="${D}"/usr/share/info \ # libdir="${D}"/usr/$(get_libdir) \ - # install || die + # install # Again, verify the Makefiles! We don't want anything falling # outside of ${D}. # The portage shortcut to the above command is simply: # - #einstall || die + #einstall #}
