diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2011-04-26 07:09:03 -0400 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2011-04-26 07:09:03 -0400 |
commit | c3f0774562030462c13873fb4a1c7ffccb2c4416 (patch) | |
tree | 2714b2cf7f77e5cfc04bc385142059c3a5e8a87c /postgresql.eselect | |
parent | Replaced '-xtype' with '-type' and added '-L' to the 'find' command. (diff) | |
download | eselect-c3f0774562030462c13873fb4a1c7ffccb2c4416.tar.gz eselect-c3f0774562030462c13873fb4a1c7ffccb2c4416.tar.bz2 eselect-c3f0774562030462c13873fb4a1c7ffccb2c4416.zip |
Put double quotes back around '-name' to be consistent with the rest of the
module.
Add trailing slash to source path just to be safe.
Diffstat (limited to 'postgresql.eselect')
-rw-r--r-- | postgresql.eselect | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/postgresql.eselect b/postgresql.eselect index ecbe766..7ebbfde 100644 --- a/postgresql.eselect +++ b/postgresql.eselect @@ -7,7 +7,7 @@ inherit config multilib DESCRIPTION="Manage active PostgreSQL client applications and libraries" MAINTAINER="pgsql-bugs@gentoo.org" SVN_DATE='$Date: $' -VERSION="1.0.9" +VERSION="1.0.10" # Global Data B_PATH="${EROOT%/}/usr" @@ -202,13 +202,13 @@ do_set() { ln -s "${B_PATH}/${x}/postgresql-${SLOT}/${x}" "${B_PATH}/${x}/postgresql" echo "${B_PATH}/${x}/postgresql" >> "${E_PATH}"/active.links # Linker works for files - linker "${B_PATH}/${x}/postgresql-${SLOT}/${x}" \ - '-name lib*' "${B_PATH}/${x}" + linker "${B_PATH}/${x}/postgresql-${SLOT}/${x}/" \ + "-name lib*" "${B_PATH}/${x}" fi done # Link binaries to /usr/bin/ - linker "${B_PATH}/$(lib_dir)/postgresql-${SLOT}/bin" \ + linker "${B_PATH}/$(lib_dir)/postgresql-${SLOT}/bin/" \ "-type f" "${B_PATH}/bin" # Default share path @@ -324,7 +324,7 @@ do_update() { done local tmp_manpath="${B_PATH}/share/postgresql-${curslot}/man/" [[ -d ${tmp_manpath} ]] && manpath+=":${tmp_manpath}" - linker "${B_PATH}/$(lib_dir)/postgresql-${curslot}/bin" \ + linker "${B_PATH}/$(lib_dir)/postgresql-${curslot}/bin/" \ "-type f" "${B_PATH}/bin" "${curslot//.}" echo "done." done |