From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A744A13877A for ; Sat, 30 Aug 2014 09:51:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CA9AE0DF4; Sat, 30 Aug 2014 09:51:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3355AE0DF4 for ; Sat, 30 Aug 2014 09:51:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C483733EEB4 for ; Sat, 30 Aug 2014 09:51:20 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2178) id 73CE043F3; Sat, 30 Aug 2014 09:51:19 +0000 (UTC) From: "Ulrich Mueller (ulm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ulm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in /: skel.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: skel.ebuild X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140830095119.73CE043F3@oystercatcher.gentoo.org> Date: Sat, 30 Aug 2014 09:51:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 00f3e8ac-9efa-482e-b25b-ef393cc87acf X-Archives-Hash: dc58e3d44c6f5ca8c594038453c510ac 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 #}