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 6EE201397F2 for ; Fri, 21 Aug 2015 12:51:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F21D3E081C; Fri, 21 Aug 2015 12:51:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 949A0E081C for ; Fri, 21 Aug 2015 12:51:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5F75340A08 for ; Fri, 21 Aug 2015 12:43:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1786E155 for ; Fri, 21 Aug 2015 12:43:34 +0000 (UTC) From: "Yuta SATOH" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yuta SATOH" Message-ID: <1440161002.43bf434fa63c2519ef291163a9ee3144d0fe556d.yuta_satoh@gentoo> Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: scripts/ X-VCS-Repository: proj/gentoo-bsd X-VCS-Files: scripts/automatic_updater.sh X-VCS-Directories: scripts/ X-VCS-Committer: yuta_satoh X-VCS-Committer-Name: Yuta SATOH X-VCS-Revision: 43bf434fa63c2519ef291163a9ee3144d0fe556d X-VCS-Branch: master Date: Fri, 21 Aug 2015 12:43: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: fd29328d-db7b-499c-9126-740ba18dbf3b X-Archives-Hash: 8d985ba7e7446a9e002a88d7e6e1db3a commit: 43bf434fa63c2519ef291163a9ee3144d0fe556d Author: Yuta SATOH gentoo gr jp> AuthorDate: Fri Aug 21 12:43:22 2015 +0000 Commit: Yuta SATOH gentoo gr jp> CommitDate: Fri Aug 21 12:43:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=43bf434f automatic_updater.sh: added MAKEOPTS=-j1 and force set gcc to CC,CXX. scripts/automatic_updater.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/automatic_updater.sh b/scripts/automatic_updater.sh index 258424c..4d620d6 100755 --- a/scripts/automatic_updater.sh +++ b/scripts/automatic_updater.sh @@ -94,8 +94,8 @@ update_freebsd_userland(){ fi emerge -C dev-libs/libelf dev-libs/libexecinfo dev-libs/libiconv sys-process/fuser-bsd && : - emerge --nodeps sys-freebsd/freebsd-libexec - USE=build emerge --nodeps sys-freebsd/freebsd-lib + CC=gcc CXX=g++ emerge --nodeps sys-freebsd/freebsd-libexec + CC=gcc CXX=g++ USE=build MAKEOPTS=-j1 emerge --nodeps sys-freebsd/freebsd-lib if [[ -e /usr/lib/libc++.so ]] ; then emerge -uN sys-libs/libcxx sys-libs/libcxxrt --exclude sys-freebsd/* fi