index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andres P <aepd87@gmail.com> | 2010-06-21 12:25:37 -0430 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-24 08:22:15 -0500 |
commit | c6a94a8d2204cfdec0f782f647903d597b4faf57 (patch) | |
tree | 565c9f048a4852ec0c68db484a3fb8d40f013198 /scripts/makepkg.sh.in | |
parent | 67d71ea932a18d27dbb87f4f364ae9159b4edc96 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index dbc40471..f2ec78e2 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1255,7 +1255,7 @@ check_sanity() { if (( ${#pkgname[@]} > 1 )); then for pkg in ${pkgname[@]}; do - if declare -f package_${pkg} >/dev/null; then + if ! declare -f package_${pkg} >/dev/null; then error "$(gettext "missing package function for split package '%s'")" "$pkg" return 1 fi |