summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2017-05-12 19:39:03 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2017-05-12 19:39:03 -0400
commit0b49af18f90c37bfde21b86c0007390ac63f0c3b (patch)
treea2eea4b12a013d7b87ac27089ef59c1c47ed571b
parent518a22f386ccb5968dce85490278494e058995b1 (diff)
downloaddevtools32-lukeshu/to-upstream/misc1-20170512.tar.xz
makechrootpkg: Fix broken symlinks because of chroot SRCPKGDEST /srcpkgdestlukeshu/to-upstream/misc1-20170512
Commit 58968cf fixed symlinks for package products in $startdir in light of the simplified chroot setup. However, a similar change needs to be made for source-package products. This was an easy omission to make because makechrootpkg does not produce source-pakcages by default.
-rw-r--r--makechrootpkg.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index ffe6e42..246774a 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -313,6 +313,11 @@ move_products() {
for s in "$copydir"/srcpkgdest/*; do
chown "$src_owner" "$s"
mv "$s" "$SRCPKGDEST"
+
+ # Fix broken symlink because of temporary chroot SRCPKGDEST /srcpkgdest
+ if [[ "$PWD" != "$SRCPKGDEST" && -L "$PWD/${s##*/}" ]]; then
+ ln -sf "$SRCPKGDEST/${s##*/}"
+ fi
done
}
# }}}