From b4c8ef7dadf851e07188ea5ef64922a6ee8158b5 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 5 Jun 2015 12:11:47 +0000 Subject: [PATCH] abuild: normalize path when finding symlink targets some paths like usr/lib/../../lib/libudev.so.0.13.0 will fail to resolve if usr/lib is does not exist, even if lib/libudev.so.0.13.0 does. To solve thise we normalize out the ../ in path string before we try to resolve it. --- abuild.in | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/abuild.in b/abuild.in index 12e43da..662a06f 100644 --- a/abuild.in +++ b/abuild.in @@ -1180,6 +1180,21 @@ scan_shared_objects() { done > "$controldir"/.needs-so } +# normalize a path string +normalize_path() { + local oifs="$IFS" pathstr= i= + IFS='/' + set -- $1 + for i; do + case "$i" in + "."|"") continue;; + "..") pathstr="${pathstr%%/${pathstr##*/}}";; + *) pathstr="${pathstr}/$i";; + esac + done + echo "$pathstr" +} + # find which package provides file that symlink points to scan_symlink_targets() { local name="$1" dir="$2" datadir="$3" @@ -1188,10 +1203,10 @@ scan_symlink_targets() { for symfile in "$pkgbasedir"/.control.*/.symlinks; do [ -e "$symfile" ] || continue while read symlink target; do - case "$target" in - /*) targetpath="${datadir}/$target";; - *) targetpath="${symlink%/*}/$target";; - esac + if [ "${target#/}" = "$target" ]; then + target="${symlink%/*}/$target" + fi + targetpath="$datadir"/$(normalize_path "$target") if [ -e "$targetpath" ] || [ -L "$targetpath" ]; then local d="${symfile%/.symlinks}" echo "$name=$pkgver-r$pkgrel" \