diff options
author | Andres P <aepd87@gmail.com> | 2010-06-25 18:46:38 -0430 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-12 20:25:09 -0600 |
commit | 889c260cbf6cf497169ca9b75df121d04140441d (patch) | |
tree | 9e786269b1610f3c72e590e8a43801aac7eea6c2 /scripts | |
parent | 579533d1a07808c3e0458d6042d6039e56c38de2 (diff) | |
download | pacman-889c260cbf6cf497169ca9b75df121d04140441d.tar.xz |
makepkg: remove dead code from handle_deps
The error message that has been removed never gets to print because, given the
same condition, handle_deps throws the same error and then immediately exits
makepkg.
Signed-off-by: Andres P <aepd87@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index f5402222..4e321d1f 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -447,8 +447,6 @@ resolve_deps() { # check deps again to make sure they were resolved deplist="$(set +E; check_deps $*)" || exit 1 [[ -z $deplist ]] && return $R_DEPS_SATISFIED - elif (( DEP_BIN )); then - error "$(gettext "Failed to install all missing dependencies.")" fi msg "$(gettext "Missing Dependencies:")" |