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 42B9813847E for ; Mon, 14 Jan 2013 10:20:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD47A21C049; Mon, 14 Jan 2013 10:20:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54A5921C049 for ; Mon, 14 Jan 2013 10:20:30 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 653B833C1EE for ; Mon, 14 Jan 2013 10:20:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E956CE4073 for ; Mon, 14 Jan 2013 10:20:27 +0000 (UTC) From: "Agostino Sarubbo" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Agostino Sarubbo" Message-ID: <1358158810.c9ea94258dab8d9f25e28a392af0ea3b6bbd49c0.ago@gentoo> Subject: [gentoo-commits] dev/ago:master commit in: script/ X-VCS-Repository: dev/ago X-VCS-Files: script/best_makeopts.sh X-VCS-Directories: script/ X-VCS-Committer: ago X-VCS-Committer-Name: Agostino Sarubbo X-VCS-Revision: c9ea94258dab8d9f25e28a392af0ea3b6bbd49c0 X-VCS-Branch: master Date: Mon, 14 Jan 2013 10:20:27 +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: 713aaf7f-1c78-4ca1-84b0-72b10e3ab203 X-Archives-Hash: be7bd6ed94dd5b313ffe8bfbf9b298ac commit: c9ea94258dab8d9f25e28a392af0ea3b6bbd49c0 Author: Agostino Sarubbo gentoo org> AuthorDate: Mon Jan 14 10:20:10 2013 +0000 Commit: Agostino Sarubbo gentoo org> CommitDate: Mon Jan 14 10:20:10 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ago.git;a=commit;h=c9ea9425 Be sure you don't use strange EMERGE_DEFAULT_OPTS --- script/best_makeopts.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/script/best_makeopts.sh b/script/best_makeopts.sh index b11c53e..ae9e9ce 100755 --- a/script/best_makeopts.sh +++ b/script/best_makeopts.sh @@ -9,6 +9,6 @@ DISTDIR="/tmp/" emerge -f ${PACKAGE} for i in {1..10} do echo 1 > /proc/sys/vm/drop_caches - time DISTDIR="/tmp" MAKEOPTS="-j${i}" emerge -q1OB ${PACKAGE} + time DISTDIR="/tmp" EMERGE_DEFAULT_OPTS="" MAKEOPTS="-j${i}" emerge -q1OB ${PACKAGE} echo -ne "\n\n\n" done