commit:     620d893f7e52f810e40b470761e00f5454fdae36
Author:     Aaron W. Swenson <aaron <AT> grandmasfridge <DOT> org>
AuthorDate: Sun Jan 14 16:19:12 2018 +0000
Commit:     Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Sun Jan 14 16:19:12 2018 +0000
URL:        
https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=620d893f

More concise die messages

 postgresql.eselect | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/postgresql.eselect b/postgresql.eselect
index aa89b49..d05f724 100644
--- a/postgresql.eselect
+++ b/postgresql.eselect
@@ -97,7 +97,8 @@ linker() {
                # Create relative links so that they work both here and inside 
the new
                # root if $ROOT is not "/".
                rel_source=$(relative_name "${link_source}" "${target_dir}")
-               ln -sf "${rel_source}" "${link_target}" || die -q "Unable to 
create link!"
+               ln -sf "${rel_source}" "${link_target}" || \
+                       die -q "SYMLINK FAILED: ${rel_source} -> ${link_target}"
        done
 }
 
@@ -226,7 +227,7 @@ do_set() {
                rel_source=$(relative_name "${include_sources[$i]}" "$(dirname 
"${INCLUDE_TARGETS[$i]}")")
 
                ln -sf "$rel_source" "${INCLUDE_TARGETS[$i]}" || \
-                       die -q "Unable to create link! $rel_source -> 
${INCLUDE_TARGETS[$i]}"
+                       die -q "SYMLINK FAILED: $rel_source -> 
${INCLUDE_TARGETS[$i]}"
        done
 
        # Link modules to /usr/lib{,32,64}/
@@ -235,7 +236,8 @@ do_set() {
                if [[ -d "${USR_PATH}/${x}/postgresql-${slot}/${x}" ]] ; then
                        # 'linker' function doesn't work for linking 
directories.
                        # Default lib path - create a relative link
-                       ln -sf "postgresql-${slot}/${x}" 
"${USR_PATH}/${x}/postgresql"
+                       ln -sf "postgresql-${slot}/${x}" 
"${USR_PATH}/${x}/postgresql" || \
+                               die -q "SYMLINK FAILED: postgresql-${slot}/${x} 
-> ${USR_PATH}/${x}/postgresql"
 
                        # Linker works for files
                        linker "${USR_PATH}/${x}/postgresql-${slot}/${x}/" \
@@ -264,7 +266,8 @@ do_set() {
 
        # Default share path - use a relative link here by just specifying the
        # base name
-       ln -sf "postgresql-${slot}" "${USR_PATH}/share/postgresql"
+       ln -sf "postgresql-${slot}" "${USR_PATH}/share/postgresql" || \
+               die -q "SYMLINK FAILED: postgresql-${slot} -> 
${USR_PATH}/share/postgresql"
 
        echo "success!"
 }

Reply via email to