From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1S2lmn-0000q7-D3 for garchives@archives.gentoo.org; Wed, 29 Feb 2012 15:49:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0402FE062D; Wed, 29 Feb 2012 15:49:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CA7EBE062D for ; Wed, 29 Feb 2012 15:49:40 +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 3C7D01B401F for ; Wed, 29 Feb 2012 15:49:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CF323E53FE for ; Wed, 29 Feb 2012 15:49:38 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1330530565.e1abe799a73594f35a2088a923a8b4ce7e4cdb07.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/actions.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: e1abe799a73594f35a2088a923a8b4ce7e4cdb07 X-VCS-Branch: master Date: Wed, 29 Feb 2012 15:49:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: fc938e02-1ad2-4bd5-9af5-3fcfc9fc3806 X-Archives-Hash: 610183b5195935e425134ab3448bc126 commit: e1abe799a73594f35a2088a923a8b4ce7e4cdb07 Author: Zac Medico gentoo org> AuthorDate: Wed Feb 29 15:49:25 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Feb 29 15:49:25 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3De1abe799 action_build: return 1 for "no" --ask answer --- pym/_emerge/actions.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 31d53f9..096dc3a 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -367,7 +367,7 @@ def action_build(settings, trees, mtimedb, print() print("Quitting.") print() - return os.EX_OK + return 1 # Don't ask again (e.g. when auto-cleaning packages after merge) myopts.pop("--ask", None) =20