aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBertrand Jacquin <bertrand@jacquin.bzh>2019-04-30 19:09:31 +0100
committerZac Medico <zmedico@gentoo.org>2019-04-30 11:55:26 -0700
commit445784f2cd9529ad03712d8d4b85784401d8b863 (patch)
tree5a3b192ab283cce3946ed4706104807e176a7c7f
parentUpdates for portage-2.3.66 release (diff)
downloadgentoo-portage-445784f2cd9529ad03712d8d4b85784401d8b863.tar.xz
gentoo-portage-445784f2cd9529ad03712d8d4b85784401d8b863.zip
__dyn_install: print category before package name
It is more common in gentoo to see ${CATEGORY}/${PF} rather than ${PF} followed by ${CATEGORY}. Closes: https://github.com/gentoo/portage/pull/423 Signed-off-by: Zac Medico <zmedico@gentoo.org>
-rw-r--r--bin/phase-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
index ee07ea0f9..e6380f554 100644
--- a/bin/phase-functions.sh
+++ b/bin/phase-functions.sh
@@ -592,7 +592,7 @@ __dyn_install() {
fi
__vecho
- __vecho ">>> Install ${PF} into ${D} category ${CATEGORY}"
+ __vecho ">>> Install ${CATEGORY}/${PF} into ${D}"
#our custom version of libtool uses $S and $D to fix
#invalid paths in .la files
export S D
@@ -613,7 +613,7 @@ __dyn_install() {
__ebuild_phase src_install
>> "$PORTAGE_BUILDDIR/.installed" || \
die "Failed to create $PORTAGE_BUILDDIR/.installed"
- __vecho ">>> Completed installing ${PF} into ${D}"
+ __vecho ">>> Completed installing ${CATEGORY}/${PF} into ${D}"
__vecho
__ebuild_phase post_src_install