From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 754E61382C5 for ; Mon, 2 Apr 2018 06:56:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6097FE0949; Mon, 2 Apr 2018 06:55:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39C23E0949 for ; Mon, 2 Apr 2018 06:55:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1B0833BE4E for ; Mon, 2 Apr 2018 06:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA8D725A for ; Mon, 2 Apr 2018 06:55:54 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1522652136.f6f304336d036d81d199cd4be4a9975ec9840d5e.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bcrypt_pbkdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild X-VCS-Directories: dev-ruby/bcrypt_pbkdf/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f6f304336d036d81d199cd4be4a9975ec9840d5e X-VCS-Branch: master Date: Mon, 2 Apr 2018 06:55:54 +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: dc8f6baf-34c7-44b9-a728-a3a502f22c02 X-Archives-Hash: d28b2d21f2d5958bcb9c67169298e74b commit: f6f304336d036d81d199cd4be4a9975ec9840d5e Author: Hans de Graaff gentoo org> AuthorDate: Mon Apr 2 06:55:36 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Apr 2 06:55:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f30433 fix compilation when functions are not inlined Closes: https://bugs.gentoo.org/629164 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild index 692e9373f3d..0370d800224 100644 --- a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild +++ b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild @@ -30,6 +30,9 @@ all_ruby_prepare() { each_ruby_configure() { ${RUBY} -Cext/mri extconf.rb || die + + # Some methods may not be inlined on x86 but they are not defined either, bug 629164 + sed -i -e 's:-Wl,--no-undefined::' ext/mri/Makefile || die } each_ruby_compile() {