For bug #151146, don't use tar's --verbose option during the package phase since...
authorZac Medico <zmedico@gentoo.org>
Sat, 14 Oct 2006 02:17:57 +0000 (02:17 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 14 Oct 2006 02:17:57 +0000 (02:17 -0000)
svn path=/main/trunk/; revision=4676

bin/misc-functions.sh

index 95f4cf7a17c747529092da66fb981b87e184bd2b..b9205ded95c07129c80659a846327ddf75077ec3 100755 (executable)
@@ -357,7 +357,7 @@ dyn_package() {
        # Sandbox is disabled in case the user wants to use a symlink
        # for $PKGDIR and/or $PKGDIR/All.
        export SANDBOX_ON="0"
-       tar cpvf - ./ | bzip2 -f > "${pkg_tmp}" || die "Failed to create tarball"
+       tar -cf - . | bzip2 -f > "${pkg_tmp}" || die "Failed to create tarball"
        cd ..
        export PYTHONPATH=${PORTAGE_PYM_PATH:-/usr/lib/portage/pym}
        python -c "import xpak; t=xpak.tbz2('${pkg_tmp}'); t.recompose('${PORTAGE_BUILDDIR}/build-info')"