Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pgsql-patches:eselect commit in: /
Date: Sat, 27 Jul 2013 21:34:39
Message-Id: 1374959502.4ee9c6f854f74bacd222c256037763136963460e.titanofold@gentoo
1 commit: 4ee9c6f854f74bacd222c256037763136963460e
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 27 21:11:42 2013 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 27 21:11:42 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pgsql-patches.git;a=commit;h=4ee9c6f8
7
8 Add support for x32.
9
10 ---
11 postgresql.eselect | 3 +++
12 1 file changed, 3 insertions(+)
13
14 diff --git a/postgresql.eselect b/postgresql.eselect
15 index 52aae84..d8c4991 100644
16 --- a/postgresql.eselect
17 +++ b/postgresql.eselect
18 @@ -29,6 +29,9 @@ lib_dir() {
19 elif [[ ${lib_list} =~ .*lib32.* && \
20 -n $(ls -d ${B_PATH}/lib32/postgresql-*/lib32 2> /dev/null) ]] ; then
21 echo "lib32"
22 + elif [[ ${lib_list} =~ .*libx32.* && \
23 + -n $(ls -d ${B_PATH}/libx32/postgresql-*/libx32 2> /dev/null) ]] ; then
24 + echo "libx32"
25 else
26 echo "lib"
27 fi