From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3BA6F1388BF for ; Sun, 10 Jan 2016 19:47:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9069EE07D5; Sun, 10 Jan 2016 19:47:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AAA9E07D5 for ; Sun, 10 Jan 2016 19:47:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4247340813 for ; Sun, 10 Jan 2016 19:47:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E467CEE for ; Sun, 10 Jan 2016 19:47:20 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1452455228.aded1d3dfcf783a6364fa83cd21c059d535c73bd.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-lua/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-lua/files/lua.eselect-1 X-VCS-Directories: app-eselect/eselect-lua/files/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: aded1d3dfcf783a6364fa83cd21c059d535c73bd X-VCS-Branch: master Date: Sun, 10 Jan 2016 19:47:20 +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: cc4944f1-2b3e-4d59-b71b-e8c727d749eb X-Archives-Hash: 9afd6cda145130293953741e6ab3bf7b commit: aded1d3dfcf783a6364fa83cd21c059d535c73bd Author: Fabian Groffen gentoo org> AuthorDate: Sun Jan 10 19:43:51 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Jan 10 19:47:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aded1d3d app-eselect/eselect-lua: make get_libdirs reflect the prefix Package-Manager: portage-2.2.20-prefix app-eselect/eselect-lua/files/lua.eselect-1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-eselect/eselect-lua/files/lua.eselect-1 b/app-eselect/eselect-lua/files/lua.eselect-1 index 59abc87..d6f9510 100644 --- a/app-eselect/eselect-lua/files/lua.eselect-1 +++ b/app-eselect/eselect-lua/files/lua.eselect-1 @@ -43,9 +43,9 @@ get_libdirs() { [[ -L ${EROOT}/usr/${dir} ]] && continue ls "${EROOT}"/usr/${dir}/liblua*.* > /dev/null 2>&1 || continue - libdirs+=' '/usr/${dir} + libdirs+=' '${EPREFIX}/usr/${dir} done - echo ${libdirs:-/usr/lib} + echo ${libdirs:-${EPREFIX}/usr/lib} } find_targets() {