Only generate KV when setting up the environment for a real ebuild phase. This
authorZac Medico <zmedico@gentoo.org>
Fri, 1 May 2009 19:11:26 +0000 (19:11 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 1 May 2009 19:11:26 +0000 (19:11 -0000)
should preven "Permission Denied: /usr/src/linux/.config" errors reported
by repoman users (repoman may trigger the error when it calls the fetch phase).

svn path=/main/trunk/; revision=13580

pym/portage/__init__.py

index e18531032c584383b7d1296b342e0f40d79a475f..7eff357d2c29e93de494709b40537bb6afa668d8 100644 (file)
@@ -5411,7 +5411,10 @@ def doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, m
                mysettings["PORTAGE_BUILDDIR"], ".exit_status")
 
        #set up KV variable -- DEP SPEEDUP :: Don't waste time. Keep var persistent.
-       if mydo != "depend" and "KV" not in mysettings:
+       if mydo != 'depend' and 'KV' not in mysettings and \
+               mydo in ('compile', 'config', 'configure', 'info',
+               'install', 'nofetch', 'postinst', 'postrm', 'preinst',
+               'prepare', 'prerm', 'setup', 'test', 'unpack'):
                mykv,err1=ExtractKernelVersion(os.path.join(myroot, "usr/src/linux"))
                if mykv:
                        # Regular source tree