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 7B30D138247 for ; Wed, 20 Nov 2013 02:34:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77036E07E0; Wed, 20 Nov 2013 02:34:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0ABC1E07E0 for ; Wed, 20 Nov 2013 02:34:17 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28C9933F140 for ; Wed, 20 Nov 2013 02:34:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E5546E54AB for ; Wed, 20 Nov 2013 02:34:14 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1384914585.1e98f68837f64657bc2d80efa19eb6acb0c11040.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: bin/revdep-rebuild.sh X-VCS-Directories: bin/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 1e98f68837f64657bc2d80efa19eb6acb0c11040 X-VCS-Branch: gentoolkit Date: Wed, 20 Nov 2013 02:34:14 +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: 64aef803-1142-453a-8f00-4c7fd1cadecf X-Archives-Hash: 1c37218ce886cae98f598ec83cc7c42e commit: 1e98f68837f64657bc2d80efa19eb6acb0c11040 Author: Paul Varner gentoo org> AuthorDate: Wed Nov 20 02:29:45 2013 +0000 Commit: Paul Varner gentoo org> CommitDate: Wed Nov 20 02:29:45 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=1e98f688 revdep-rebuild.sh: Change la_SEARCH_DIRS to use the library paths from ld.so.conf. (Bug 491658) la_SEARCH_DIRS was using SEARCH_DIRS to locate libraries in .la files. This is incorrect, it should be using the standard library path. --- bin/revdep-rebuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/revdep-rebuild.sh b/bin/revdep-rebuild.sh index 09f5135..8cf9f79 100755 --- a/bin/revdep-rebuild.sh +++ b/bin/revdep-rebuild.sh @@ -787,7 +787,7 @@ main_checks() { fi elif [[ $SEARCH_BROKEN ]]; then # Look for broken .la files - la_SEARCH_DIRS="$SEARCH_DIRS" + la_SEARCH_DIRS="$(parse_ld_so_conf)" la_search_dir="" la_broken="" la_lib=""