aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-09-28 06:46:19 -0700
committerZac Medico <zmedico@gentoo.org>2011-09-28 06:46:19 -0700
commit1f36702dbc1ce5e565b1d6e788d2c8e88f506edc (patch)
treeb9877f42c8d897e05dbaed8be926a7206f24b207 /pym/portage
parentManifest.write(): tweak unlink logic (diff)
downloadportage-1f36702dbc1ce5e565b1d6e788d2c8e88f506edc.tar.gz
portage-1f36702dbc1ce5e565b1d6e788d2c8e88f506edc.tar.bz2
portage-1f36702dbc1ce5e565b1d6e788d2c8e88f506edc.zip
doebuild: allow_missing_manifests AttributeError
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/package/ebuild/doebuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py
index bd33d917c..b2f8c7744 100644
--- a/pym/portage/package/ebuild/doebuild.py
+++ b/pym/portage/package/ebuild/doebuild.py
@@ -496,7 +496,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
not repo_config.thin_manifest and \
mydo not in ("digest", "manifest", "help") and \
not portage._doebuild_manifest_exempt_depend and \
- not (repo_config.allow_missing_manifests and not os.path.exists(manifest_path)):
+ not (repo_config.allow_missing_manifest and not os.path.exists(manifest_path)):
# Always verify the ebuild checksums before executing it.
global _doebuild_broken_ebuilds