mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
makepkg: install debug symbol packages if requested
When using "makepkg -i", install the debugging symbol packages too if present. Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
dbbe3e7cb4
commit
254329f6fb
@ -1994,6 +1994,10 @@ install_package() {
|
||||
fullver=$(get_full_version $pkg)
|
||||
pkgarch=$(get_pkg_arch $pkg)
|
||||
pkglist+=("$PKGDEST/${pkg}-${fullver}-${pkgarch}${PKGEXT}")
|
||||
|
||||
if [[ -f "$PKGDEST/${pkg}-debug-${fullver}-${pkgarch}${PKGEXT}" ]]; then
|
||||
pkglist+=("$PKGDEST/${pkg}-debug-${fullver}-${pkgarch}${PKGEXT}")
|
||||
fi
|
||||
done
|
||||
|
||||
if ! run_pacman -U ${pkglist[@]}; then
|
||||
|
Loading…
Reference in New Issue
Block a user