From: Raúl Porcel Date: Sat, 11 Sep 2010 18:17:48 +0000 (+0000) Subject: Apply patch to make stage2 quiet, thanks to Alexandre Nuno Milheiro , gentoo bug #273664 --- diff --git a/ChangeLog b/ChangeLog index 6b48ef4c..ff8e3f18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,11 @@ # Distributed under the GPL v2 # $Id$ + 11 Sep 2010; Raúl Porcel + targets/support/chroot-functions.sh: + Apply patch to make stage2 quiet, thanks to Alexandre Nuno Milheiro + , gentoo bug #273664 + 11 Sep 2010; Raúl Porcel targets/netboot/netboot-final.sh: Fix sparc bug, gentoo bug 297231 diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 555c99f3..f1bdb7f2 100644 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -125,15 +125,16 @@ setup_myemergeopts(){ clst_myemergeopts="--verbose" else clst_myemergeopts="--quiet" + bootstrap_opts="${bootstrap_opts} -q" fi if [ -n "${clst_FETCH}" ] then - export bootstrap_opts="-f" + export bootstrap_opts="${bootstrap_opts} -f" export clst_myemergeopts="${clst_myemergeopts} -f" elif [ -n "${clst_PKGCACHE}" ] then export clst_myemergeopts="${clst_myemergeopts} --usepkg --buildpkg --newuse" - export bootstrap_opts="-r" + export bootstrap_opts="${bootstrap_opts} -r" fi }