makepkg: fix inconsistent output when checking dependencies

Instead of writing:
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Installing missing dependencies...

Just make it homogeneous:
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...

Signed-off-by: Andres P <aepd87@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Andres P 2010-06-17 08:14:51 -04:30 committed by Allan McRae
parent 70418e48f6
commit 1b93a116e7
1 changed files with 2 additions and 2 deletions

View File

@ -1888,10 +1888,10 @@ elif type -p "${PACMAN%% *}" >/dev/null; then
fi
deperr=0
msg "$(gettext "Checking Runtime Dependencies...")"
msg "$(gettext "Checking runtime dependencies...")"
resolve_deps ${depends[@]} || deperr=1
msg "$(gettext "Checking Buildtime Dependencies...")"
msg "$(gettext "Checking buildtime dependencies...")"
resolve_deps ${makedepends[@]} || deperr=1
if (( RMDEPS )); then