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 F23E713829C for ; Fri, 10 Jun 2016 03:30:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C005D142AA; Fri, 10 Jun 2016 03:29:58 +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 66D0014252 for ; Fri, 10 Jun 2016 03:29:56 +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 A525A340CD6 for ; Fri, 10 Jun 2016 03:29:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 478EA23F1 for ; Fri, 10 Jun 2016 03:29:51 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1465523249.3a4fd1ab5c253a297900f5342b45b534bca7c375.heroxbd@gentoo> Subject: [gentoo-commits] repo/proj/prefix:rap0 commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 3a4fd1ab5c253a297900f5342b45b534bca7c375 X-VCS-Branch: rap0 Date: Fri, 10 Jun 2016 03:29:51 +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: f945de55-fb3e-4930-84e5-cf875472fa68 X-Archives-Hash: f90da1b55ed7f31d73f43cd83d304a33 commit: 3a4fd1ab5c253a297900f5342b45b534bca7c375 Author: Benda Xu gentoo org> AuthorDate: Wed Jun 8 01:09:48 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Fri Jun 10 01:47:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=3a4fd1ab s/bootstrap-prefix.sh: stage tools should be used first in stage3. scripts/bootstrap-prefix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 0b9601b..1e5393b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1364,6 +1364,8 @@ bootstrap_stage3() { fi emerge_pkgs() { + # stage3 tools should be used first. + DEFAULT_PATH=$(echo "${ROOT}"/{,tmp/}{,usr/}{s,}bin | tr ' ' ':') \ EPREFIX="${ROOT}" \ do_emerge_pkgs "$@" }