From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QBz4m-0001gN-Du for garchives@archives.gentoo.org; Tue, 19 Apr 2011 00:45:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D365C1C02D; Tue, 19 Apr 2011 00:45:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A27971C02D for ; Tue, 19 Apr 2011 00:45:47 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 268881B4038 for ; Tue, 19 Apr 2011 00:45:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3609A8007B for ; Tue, 19 Apr 2011 00:45:46 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: Subject: [gentoo-commits] proj/pgsql-patches:eselect commit in: / X-VCS-Repository: proj/pgsql-patches X-VCS-Files: postgresql.eselect X-VCS-Directories: / X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: f38e2507cd15b0610fc80812ed0edbca79764654 Date: Tue, 19 Apr 2011 00:45:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 5eaffb7f06bd1b72bf22cb82827cb98e commit: f38e2507cd15b0610fc80812ed0edbca79764654 Author: Aaron W. Swenson gentoo org> AuthorDate: Tue Apr 19 00:45:11 2011 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Tue Apr 19 00:45:11 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pgsql-patches= .git;a=3Dcommit;h=3Df38e2507 Fixed MAN page search paths. --- postgresql.eselect | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/postgresql.eselect b/postgresql.eselect index 21eb803..0cc2fdf 100644 --- a/postgresql.eselect +++ b/postgresql.eselect @@ -304,7 +304,7 @@ do_update() { ldpath+=3D"${B_PATH}/${x}/postgresql:" done ldpath=3D"${ldpath%:}" - local manpath=3D"${B_PATH}/share/postgresql/" + local manpath=3D"${B_PATH}/share/postgresql/man/" while [[ $[--index] -gt -1 ]] ; do local curslot=3D"${slots[$index]}" echo -n "Refreshing symbolic links for ${curslot} applications (like " @@ -313,8 +313,8 @@ do_update() { local lib_path=3D"${B_PATH}/${x}/postgresql-${curslot}/${x}/" [[ -d ${lib_path} ]] && ldpath+=3D":${lib_path}" done - local share_path=3D"${B_PATH}/share/postgresql-${curslot}/" - [[ -d ${share_path} ]] && manpath+=3D":${share_path}" + local tmp_manpath=3D"${B_PATH}/share/postgresql-${curslot}/man/" + [[ -d ${tmp_manpath} ]] && manpath+=3D":${tmp_manpath}" linker "${B_PATH}/$(lib_dir)/postgresql-${curslot}/bin" \ "-xtype f" "${B_PATH}/bin" "${curslot//.}" echo "done."