Be consistent with naming of handle_deps function

All other "dep" functions (check_deps, resolve_deps, remove_deps)
have underscores separating words.

Being consistent, convert handledeps to handle_deps.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2009-08-07 16:40:04 +10:00 committed by Dan McGee
parent d7675e393f
commit 68200676d2
1 changed files with 2 additions and 2 deletions

View File

@ -354,7 +354,7 @@ check_deps() {
fi
}
handledeps() {
handle_deps() {
local R_DEPS_SATISFIED=0
local R_DEPS_MISSING=1
@ -402,7 +402,7 @@ resolve_deps() {
return $R_DEPS_SATISFIED
fi
if handledeps $deplist; then
if handle_deps $deplist; then
pkgdeps="$pkgdeps $deplist"
# check deps again to make sure they were resolved
deplist="$(check_deps $*)"