From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 59D0613826A for ; Wed, 25 May 2016 13:03:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99CB0234021; Wed, 25 May 2016 13:03:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AFD8234021 for ; Wed, 25 May 2016 13:03:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAC63340E0B for ; Wed, 25 May 2016 13:03:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1167C968 for ; Wed, 25 May 2016 13:03:34 +0000 (UTC) From: "M. B." To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "M. B." Message-ID: <1464177839.f0603f17b262357c94c49a5f84056bd73dec3434.tomboy64@gentoo> Subject: [gentoo-commits] repo/user/tbc:master commit in: tools/ X-VCS-Repository: repo/user/tbc X-VCS-Files: tools/chroot-here.sh X-VCS-Directories: tools/ X-VCS-Committer: tomboy64 X-VCS-Committer-Name: M. B. X-VCS-Revision: f0603f17b262357c94c49a5f84056bd73dec3434 X-VCS-Branch: master Date: Wed, 25 May 2016 13:03:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8ff88dcf-eea1-4edf-8835-c9c6387edb66 X-Archives-Hash: 961dfe3b89715cb806b51060beacbe04 commit: f0603f17b262357c94c49a5f84056bd73dec3434 Author: Matthew Brewer sina cn> AuthorDate: Wed May 25 11:46:08 2016 +0000 Commit: M. B. sina cn> CommitDate: Wed May 25 12:03:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/user/tbc.git/commit/?id=f0603f17 add chroot-here.sh to tools (dangerous!) tools/chroot-here.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/chroot-here.sh b/tools/chroot-here.sh index b8721b3..408fef4 100755 --- a/tools/chroot-here.sh +++ b/tools/chroot-here.sh @@ -199,12 +199,12 @@ cp -v /etc/resolv.conf etc/ || quit "Couldn't copy resolv.conf" if [[ ${ARCH_FULL} != x86 && ${ARCH} != amd64 ]]; then cp -v "${QEMU_BIN}" ".$(dirname "${QEMU_BIN}")" || quit "Couldn't copy qemu binary." fi - cat <> etc/portage/make.conf || quit "Couldn't write to etc/portage/make.conf." -MAKEOPTS="-j5" -EMERGE_DEFAULT_OPTS="--verbose --autounmask-write --nospinner --keep-going -j5 --load-average=5 --verbose-conflict" -PYTHON_SINGLE_TARGET="python3_4" -PYTHON_TARGETS="python2_7 python3_3 python3_4 python3_5 pypy pypy2" -EOF + cat <<-EOF >> etc/portage/make.conf || quit "Couldn't write to etc/portage/make.conf." + MAKEOPTS="-j5" + EMERGE_DEFAULT_OPTS="--verbose --autounmask-write --nospinner --keep-going -j5 --load-average=5 --verbose-conflict" + PYTHON_SINGLE_TARGET="python3_4" + PYTHON_TARGETS="python2_7 python3_3 python3_4 python3_5 pypy pypy2" + EOF if [[ ${ARCH_FULL} == x86 ]]; then PS1="chroot${PS1}" linux32 chroot ./ /bin/bash --login || quit "Chrooting failed." else