diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-05-22 03:39:50 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-05-22 03:39:50 +0000 |
commit | b538f412b7bc498a0270850f0247b5f131d68ace (patch) | |
tree | 699dc25048d27dab86bda9ba7ba932a0f570eb15 /eclass/ruby-ng.eclass | |
parent | Remove test-unit as viable alternative for Ruby 1.8 and JRuby (slot 0 is not ... (diff) | |
download | gentoo-2-b538f412b7bc498a0270850f0247b5f131d68ace.tar.gz gentoo-2-b538f412b7bc498a0270850f0247b5f131d68ace.tar.bz2 gentoo-2-b538f412b7bc498a0270850f0247b5f131d68ace.zip |
Fix missing link warnings in the eclass to print the library's soname again.
Diffstat (limited to 'eclass/ruby-ng.eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 8d86e7c03b22..8bcf93704d5f 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.14 2010/05/21 23:18:46 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.15 2010/05/22 03:39:50 flameeyes Exp $ # # @ECLASS: ruby-ng.eclass # @MAINTAINER: @@ -415,9 +415,9 @@ _each_ruby_check_install() { > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then - ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby}" + ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) - die "Missing links to ${libruby}" + die "Missing links to ${libruby_soname}" fi } |