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>
This commit is contained in:
parent
df5024fd64
commit
502645c0e3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue