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 9586F1382C5 for ; Sat, 15 May 2021 06:46:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5934E084E; Sat, 15 May 2021 06:46:14 +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 A2EB5E084E for ; Sat, 15 May 2021 06:46:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 509AB335D0F for ; Sat, 15 May 2021 06:46:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 641005C4 for ; Sat, 15 May 2021 06:46:11 +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: <1621061168.f351e3caf8a30634ee07a5a37e07d5a7e37adc2c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/ruby-fakegem.eclass X-VCS-Directories: eclass/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f351e3caf8a30634ee07a5a37e07d5a7e37adc2c X-VCS-Branch: master Date: Sat, 15 May 2021 06:46:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e9066575-6201-46d7-97fe-058babb2b3c6 X-Archives-Hash: 7ccf66c24361b184b778ddc976c09a60 commit: f351e3caf8a30634ee07a5a37e07d5a7e37adc2c Author: Hans de Graaff gentoo org> AuthorDate: Sat May 15 06:43:40 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat May 15 06:46:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f351e3ca eclass/ruby-fakegem.eclass: remove duplicate / in path Signed-off-by: Hans de Graaff gentoo.org> eclass/ruby-fakegem.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass index 3e36b06d315..9b2fd39ccf1 100644 --- a/eclass/ruby-fakegem.eclass +++ b/eclass/ruby-fakegem.eclass @@ -562,7 +562,7 @@ each_fakegem_install() { local _extensionsdir="$(ruby_fakegem_gemsdir)/extensions/$(ruby_rbconfig_value 'arch')/$(ruby_rbconfig_value 'ruby_version')/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}" for extension in ${RUBY_FAKEGEM_EXTENSIONS[@]} ; do - emake V=1 sitearchdir="${ED}/${_extensionsdir}" -C ${extension%/*} install + emake V=1 sitearchdir="${ED}${_extensionsdir}" -C ${extension%/*} install done # Add the marker to indicate that the extensions are installed