Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/
Date: Wed, 28 Sep 2011 13:47:46
Message-Id: 1f36702dbc1ce5e565b1d6e788d2c8e88f506edc.zmedico@gentoo
1 commit: 1f36702dbc1ce5e565b1d6e788d2c8e88f506edc
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 13:46:19 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 13:46:19 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=1f36702d
7
8 doebuild: allow_missing_manifests AttributeError
9
10 ---
11 pym/portage/package/ebuild/doebuild.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py
15 index bd33d91..b2f8c77 100644
16 --- a/pym/portage/package/ebuild/doebuild.py
17 +++ b/pym/portage/package/ebuild/doebuild.py
18 @@ -496,7 +496,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
19 not repo_config.thin_manifest and \
20 mydo not in ("digest", "manifest", "help") and \
21 not portage._doebuild_manifest_exempt_depend and \
22 - not (repo_config.allow_missing_manifests and not os.path.exists(manifest_path)):
23 + not (repo_config.allow_missing_manifest and not os.path.exists(manifest_path)):
24 # Always verify the ebuild checksums before executing it.
25 global _doebuild_broken_ebuilds