diff options
author | Dan McGee <dan@archlinux.org> | 2008-05-09 04:48:44 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-05-10 07:48:47 +0200 |
commit | 502645c0e304a8ee062d8da7f162ff4c195e6be8 (patch) | |
tree | 3d5107519f8d64ee7cad87d924d3251dd3629a18 /scripts | |
parent | df5024fd64de5b033ed76d3ea347a1126572cbc3 (diff) | |
download | pacman-502645c0e304a8ee062d8da7f162ff4c195e6be8.tar.gz pacman-502645c0e304a8ee062d8da7f162ff4c195e6be8.tar.xz |
makepkg: Unify start and end messages
I've always found it odd why the package version is shown at the start but
not the end of the package build. Fix it, and while we are at it, add the
$CARCH variable to the display too.
Signed-off-by: Dan McGee <dan@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 7db8b4d7..53d7f983 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1404,7 +1404,7 @@ if [ "$INFAKEROOT" = "1" ]; then exit 0 # $E_OK fi -msg "$(gettext "Making package: %s")" "$pkgname $pkgver-$pkgrel ($(date))" +msg "$(gettext "Making package: %s")" "$pkgname $pkgver-$pkgrel $CARCH ($(date))" if [ $EUID -eq 0 ]; then warning "$(gettext "Running makepkg as root...")" @@ -1515,7 +1515,7 @@ else create_xdelta "$PKGDEST/${pkgname}-${pkgver}-${pkgrel}-${CARCH}${PKGEXT}" fi -msg "$(gettext "Finished making: %s")" "$pkgname ($(date))" +msg "$(gettext "Finished making: %s")" "$pkgname $pkgver-$pkgrel $CARCH ($(date))" install_package |