summaryrefslogtreecommitdiff
path: root/makechrootpkg.in
diff options
context:
space:
mode:
Diffstat (limited to 'makechrootpkg.in')
-rw-r--r--makechrootpkg.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 284d444..766f237 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -233,6 +233,12 @@ move_products() {
for pkgfile in "$copydir"/pkgdest/*; do
chown "$src_owner" "$pkgfile"
mv "$pkgfile" "$PKGDEST"
+
+ # Fix broken symlink because of temporary chroot PKGDEST /pkgdest
+ if [[ "$PWD" != "$PKGDEST" && -L "$PWD/${pkgfile##*/}" ]]; then
+ rm "$PWD/${pkgfile##*/}"
+ ln -s "$PKGDEST/${pkgfile##*/}" "$PWD/${pkgfile##*/}"
+ fi
done
for l in "$copydir"/logdest/*; do