summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2009-08-07 08:40:04 +0200
committerDan McGee <dan@archlinux.org>2009-08-08 18:13:48 +0200
commit68200676d2828f159d5dbdf184c3ad7de42c66d6 (patch)
tree72cdf3adf94946ad2ff55ed2b0f19f36a2d49d90 /scripts
parentd7675e393ff3cecb5408c243898ebaae80c5988d (diff)
downloadpacman-68200676d2828f159d5dbdf184c3ad7de42c66d6.tar.gz
pacman-68200676d2828f159d5dbdf184c3ad7de42c66d6.tar.xz
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>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makepkg.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 56ad2c0b..05df175f 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -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 $*)"