diff options
author | Andres P <aepd87@gmail.com> | 2010-06-17 14:44:51 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2010-06-20 17:04:57 +0200 |
commit | 1b93a116e73050d2a037843647b961432b2a0dc8 (patch) | |
tree | cde88683b976cbb135d872d34eec601b5c4a9270 /scripts | |
parent | 70418e48f6c0033a1bf942fec0bbc001d3d0d8f5 (diff) | |
download | pacman-1b93a116e73050d2a037843647b961432b2a0dc8.tar.gz pacman-1b93a116e73050d2a037843647b961432b2a0dc8.tar.xz |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 8a3d00b3..1f4df014 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -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 |