makepkg: Fix typo in variable name
It turns out that you should refer to variables by their actual name...
Introduced in commit a521cea9
.
FS#38414.
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
236f1795e9
commit
b449878fea
1 changed files with 2 additions and 2 deletions
|
@ -1093,8 +1093,8 @@ remove_deps() {
|
||||||
|
|
||||||
# check for packages removed during dependency install (e.g. due to conflicts)
|
# check for packages removed during dependency install (e.g. due to conflicts)
|
||||||
# removing all installed packages is risky in this case
|
# removing all installed packages is risky in this case
|
||||||
if [[ -n $(grep -xvFf <(printf '%s\n' "${current_packagelist[@]}") \
|
if [[ -n $(grep -xvFf <(printf '%s\n' "${current_pkglist[@]}") \
|
||||||
<(printf '%s\n' "${original_packagelist[@]}") || true) ]]; then
|
<(printf '%s\n' "${original_pkglist[@]}") || true) ]]; then
|
||||||
warning "$(gettext "Failed to remove installed dependencies.")"
|
warning "$(gettext "Failed to remove installed dependencies.")"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue