This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit 23a570b44d52efc1f5c2195a7f154fab71b8c2bf
Author: Mihai Moldovan <io...@ionic.de>
Date:   Thu Aug 27 20:43:31 2015 +0200

    deduplicate.sh: surprisingly, it turned out that only checking the 
duplicate's basename against the current dependency's basename is not good 
enough.
    
    Actually construct "the real dependency-format duplicate string" and
    check it against "the real dependency".
    
    Even this is still not good enough as it needs a bit cleanup - coming up
    next.
---
 debian/changelog |    5 +++++
 deduplicate.sh   |    7 +++----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 80bc422..4367329 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -142,6 +142,11 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium
     - deduplicate.sh: copy lazy_canonical_path from macbuild.sh for now.
       deduplicate.sh will eventually be merged into macbuild.sh anyway.
     - deduplicate.sh: more temporary debugging output in fixup section.
+    - deduplicate.sh: surprisingly, it turned out that only checking the
+      duplicate's basename against the current dependency's basename is not
+      good enough. Actually construct "the real dependency-format duplicate
+      string" and check it against "the real dependency". Even this is still
+      not good enough as it needs a bit cleanup - coming up next.
 
  -- X2Go Release Manager <git-ad...@x2go.org>  Mon, 19 Sep 2016 09:07:07 +0200
 
diff --git a/deduplicate.sh b/deduplicate.sh
index 12732a4..7df0698 100755
--- a/deduplicate.sh
+++ b/deduplicate.sh
@@ -174,18 +174,17 @@ for all_entry in "${all_files[@]}"; do
        if [ "${?}" -eq 0 ]; then
                typeset line=""
                while read -r line; do
-                       typeset dependencies_filename="$(basename "${line}")"
                        echo "dependency of ${all_entry}: ${line}"
 
                        typeset duplicate_entry=""
                        typeset -i i="0"
                        for i in "${!duplicates[@]}"; do
                                typeset duplicate_entry="${duplicates[${i}]}"
-                               typeset duplicate_filename="$(basename 
"${duplicate_entry}")"
                                echo "checking for duplicate ${duplicate_entry}"
+                               typeset 
duplicate_format="${dependency_base_format}/${duplicate_entry}"
 
-                               if [ -n "${dependencies_filename}" ] && [ -n 
"${duplicate_filename}" ]; then
-                                       if [ "${dependencies_filename}" = 
"${duplicate_filename}" ]; then
+                               if [ -n "${line}" ] && [ -n 
"${duplicate_format}" ]; then
+                                       if [ "${line}" = "${duplicate_format}" 
]; then
                                                echo "install_name_tool -change 
\"${line}\" \"${to_files[${i}]}\" \"${all_entry}\""
                                        fi
                                else

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email 
on /srv/git/code.x2go.org/x2goclient.git
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits

Reply via email to