mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
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:
parent
70418e48f6
commit
1b93a116e7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user