index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2014-02-02 17:30:06 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-02-02 17:31:51 +1000 |
commit | b449878feaf3ddf49557632bd52c987a3a3a782c (patch) | |
tree | 0a1a1ab68a34cf7cf3aec0596dda3f47db8e3676 /scripts | |
parent | 236f1795e9f56674c330f6c04f2d164a37fd2682 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index e3d9a936..ce6c9dac 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1093,8 +1093,8 @@ remove_deps() { # check for packages removed during dependency install (e.g. due to conflicts) # removing all installed packages is risky in this case - if [[ -n $(grep -xvFf <(printf '%s\n' "${current_packagelist[@]}") \ - <(printf '%s\n' "${original_packagelist[@]}") || true) ]]; then + if [[ -n $(grep -xvFf <(printf '%s\n' "${current_pkglist[@]}") \ + <(printf '%s\n' "${original_pkglist[@]}") || true) ]]; then warning "$(gettext "Failed to remove installed dependencies.")" return 0 fi |