summaryrefslogtreecommitdiffstats
path: root/bin/misc-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-21 08:39:00 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-21 08:39:00 +0000
commit507bcbec012f81d79f8b5131a72c1e3f05edf4f1 (patch)
tree9c06237e205b6c106e69ef9f5a38b84b9150b65f /bin/misc-functions.sh
parentf59b95610e0ebd34099ce0bd5509fddd8411ed46 (diff)
downloadportage-507bcbec012f81d79f8b5131a72c1e3f05edf4f1.tar.gz
portage-507bcbec012f81d79f8b5131a72c1e3f05edf4f1.tar.bz2
portage-507bcbec012f81d79f8b5131a72c1e3f05edf4f1.zip
Bug #186842 - Suppress file merge display, as previously done in --quiet mode, whenever
--verbose is not enabled. Also, export PORTAGE_VERBOSE to the ebuild environment and use it to control tar verbosity when creating binary packages. svn path=/main/trunk/; revision=11709
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index ebd1d8fe6..f2e41bed8 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -629,7 +629,7 @@ dyn_package() {
cd "${T}"
install_mask "${PORTAGE_BUILDDIR}/image" "${PKG_INSTALL_MASK}"
local tar_options=""
- [ "${PORTAGE_QUIET}" == "1" ] || tar_options="${tar_options} -v"
+ [[ $PORTAGE_VERBOSE = 1 ]] && tar_options+=" -v"
# Sandbox is disabled in case the user wants to use a symlink
# for $PKGDIR and/or $PKGDIR/All.
export SANDBOX_ON="0"