summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/AbstractEbuildProcess.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-10-11 12:51:26 -0700
committerZac Medico <zmedico@gentoo.org>2010-10-11 12:51:26 -0700
commit5de77e44aa10ed5ff8262c184df651c2adc868bd (patch)
tree1442534456c1e612447e2db32870a778ecfa72bc /pym/_emerge/AbstractEbuildProcess.py
parentc78d7fd25d76e6f8f5e28215038820b70c08b2a4 (diff)
downloadportage-5de77e44aa10ed5ff8262c184df651c2adc868bd.tar.gz
portage-5de77e44aa10ed5ff8262c184df651c2adc868bd.tar.bz2
portage-5de77e44aa10ed5ff8262c184df651c2adc868bd.zip
has/best_version: eqawarn if EAPI wrong for atom
Instead of calling die as in bug #340387, just call eqawarn for the time being.
Diffstat (limited to 'pym/_emerge/AbstractEbuildProcess.py')
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py
index d711c0585..b99f1df8a 100644
--- a/pym/_emerge/AbstractEbuildProcess.py
+++ b/pym/_emerge/AbstractEbuildProcess.py
@@ -130,7 +130,7 @@ class AbstractEbuildProcess(SpawnProcess):
def _start_ipc_daemon(self):
self._exit_command = ExitCommand()
self._exit_command.reply_hook = self._exit_command_callback
- query_command = QueryCommand(self.settings)
+ query_command = QueryCommand(self.settings, self.phase)
commands = {
'best_version' : query_command,
'exit' : self._exit_command,