Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in /: skel.ebuild
Date: Sat, 30 Aug 2014 09:51:24
Message-Id: 20140830095119.73CE043F3@oystercatcher.gentoo.org
1 ulm 14/08/30 09:51:19
2
3 Modified: skel.ebuild
4 Log:
5 Remove die statements, they are redundant since EAPI 4.
6
7 Revision Changes Path
8 1.71 skel.ebuild
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?rev=1.71&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?rev=1.71&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/skel.ebuild?r1=1.70&r2=1.71
13
14 Index: skel.ebuild
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/skel.ebuild,v
17 retrieving revision 1.70
18 retrieving revision 1.71
19 diff -u -r1.70 -r1.71
20 --- skel.ebuild 18 Aug 2014 18:40:32 -0000 1.70
21 +++ skel.ebuild 30 Aug 2014 09:51:19 -0000 1.71
22 @@ -147,7 +147,7 @@
23 # make to a single process. The -j1 is a visual clue to others
24 # that the makefiles have bugs that have been worked around.
25
26 - #emake || die
27 + #emake
28 #}
29
30 # The following src_install function is implemented as default by portage, so
31 @@ -159,7 +159,7 @@
32 # anything outside of DESTDIR; do this by reading and
33 # understanding the install part of the Makefiles.
34 # This is the preferred way to install.
35 - #emake DESTDIR="${D}" install || die
36 + #emake DESTDIR="${D}" install
37
38 # When you hit a failure with emake, do not just use make. It is
39 # better to fix the Makefiles to allow proper parallelization.
40 @@ -175,11 +175,11 @@
41 # mandir="${D}"/usr/share/man \
42 # infodir="${D}"/usr/share/info \
43 # libdir="${D}"/usr/$(get_libdir) \
44 - # install || die
45 + # install
46 # Again, verify the Makefiles! We don't want anything falling
47 # outside of ${D}.
48
49 # The portage shortcut to the above command is simply:
50 #
51 - #einstall || die
52 + #einstall
53 #}