diff options
author | Sam James <sam@gentoo.org> | 2021-04-12 03:28:05 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-16 12:16:54 +0100 |
commit | 88ea5acb38d6fe5af2b9d921ee59e365f525e99f (patch) | |
tree | 3c8fde40497ed7f4da9b4d41f13a8c95148d2478 /dev-ruby | |
parent | dev-ruby/rexical: eutils-- (diff) | |
download | gentoo-88ea5acb38d6fe5af2b9d921ee59e365f525e99f.tar.gz gentoo-88ea5acb38d6fe5af2b9d921ee59e365f525e99f.tar.bz2 gentoo-88ea5acb38d6fe5af2b9d921ee59e365f525e99f.zip |
dev-ruby/ruby-prof: drop superfluous die
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/ruby-prof/ruby-prof-1.4.1.ebuild | 4 | ||||
-rw-r--r-- | dev-ruby/ruby-prof/ruby-prof-1.4.2.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dev-ruby/ruby-prof/ruby-prof-1.4.1.ebuild b/dev-ruby/ruby-prof/ruby-prof-1.4.1.ebuild index 49024f019914..0a16a9c15184 100644 --- a/dev-ruby/ruby-prof/ruby-prof-1.4.1.ebuild +++ b/dev-ruby/ruby-prof/ruby-prof-1.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -45,7 +45,7 @@ each_ruby_configure() { } each_ruby_compile() { - emake V=1 -Cext/ruby_prof || die "build failed" + emake V=1 -Cext/ruby_prof cp ext/ruby_prof/*$(get_modname) lib/ || die "copy of extension failed" } diff --git a/dev-ruby/ruby-prof/ruby-prof-1.4.2.ebuild b/dev-ruby/ruby-prof/ruby-prof-1.4.2.ebuild index 46325890cca0..716e4bf8ce7a 100644 --- a/dev-ruby/ruby-prof/ruby-prof-1.4.2.ebuild +++ b/dev-ruby/ruby-prof/ruby-prof-1.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -45,7 +45,7 @@ each_ruby_configure() { } each_ruby_compile() { - emake V=1 -Cext/ruby_prof || die "build failed" + emake V=1 -Cext/ruby_prof cp ext/ruby_prof/*$(get_modname) lib/ || die "copy of extension failed" } |