summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-04-14 14:30:56 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-04-14 14:30:56 +0000
commit5a48352b717bb40deade291fca6b48086b2266a1 (patch)
tree5b520c5bb199b830082114d00aeadec8379dd693 /skel.ebuild
parent[bump] dev-perl/Bio-Graphics-2.210.0 (diff)
downloadhistorical-5a48352b717bb40deade291fca6b48086b2266a1.tar.gz
historical-5a48352b717bb40deade291fca6b48086b2266a1.tar.bz2
historical-5a48352b717bb40deade291fca6b48086b2266a1.zip
Punt useless die messages, as PM will print out exact command that failed
Diffstat (limited to 'skel.ebuild')
-rw-r--r--skel.ebuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/skel.ebuild b/skel.ebuild
index d6518c00b828..928b83a14835 100644
--- a/skel.ebuild
+++ b/skel.ebuild
@@ -148,7 +148,7 @@ RDEPEND="${DEPEND}"
# 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 failed"
+ #emake || die
#}
# The following src_install function is implemented as default by portage, so
@@ -160,7 +160,7 @@ RDEPEND="${DEPEND}"
# 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 install failed"
+ #emake DESTDIR="${D}" install || die
# When you hit a failure with emake, do not just use make. It is
# better to fix the Makefiles to allow proper parallelization.
@@ -176,11 +176,11 @@ RDEPEND="${DEPEND}"
# mandir="${D}"/usr/share/man \
# infodir="${D}"/usr/share/info \
# libdir="${D}"/usr/$(get_libdir) \
- # install || die "emake install failed"
+ # install || die
# 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 failed"
+ #einstall || die
#}