xbps-src: allow to use install-destdir for pkgs already installed.
This commit is contained in:
parent
a3ec116aeb
commit
4478b5ead3
1 changed files with 3 additions and 1 deletions
|
@ -52,9 +52,11 @@ install_pkg()
|
||||||
check_installed_pkg "$pkg"
|
check_installed_pkg "$pkg"
|
||||||
if [ $? -eq 1 -o $? -eq 0 ]; then
|
if [ $? -eq 1 -o $? -eq 0 ]; then
|
||||||
instver="$($XBPS_PKGDB_CMD version $pkgname)"
|
instver="$($XBPS_PKGDB_CMD version $pkgname)"
|
||||||
if [ -n "$instver" ]; then
|
if [ -n "$instver" -a "$install_destdir_target" = "no" ]; then
|
||||||
echo "=> $pkgname-$instver already installed."
|
echo "=> $pkgname-$instver already installed."
|
||||||
return 0
|
return 0
|
||||||
|
elif [ -n "$instver" -a "$install_destdir_target" = "yes" ]; then
|
||||||
|
echo "=> $pkgname-$instver installed, continuing for DESTDIR installation..."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue