[oe-commits] [openembedded-core] 05/15: terminal.py: fix devshell with mate-terminal

git at git.openembedded.org git at git.openembedded.org
Sun Aug 27 08:37:22 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit df18a8d2eee7771570246b416bb4df4a933cce56
Author: Andre McCurdy <armccurdy at gmail.com>
AuthorDate: Fri Aug 25 13:36:31 2017 -0700

    terminal.py: fix devshell with mate-terminal
    
    Without the --disable-factory option, mate-terminal fails to start
    with the error:
    
     | There was an error creating the child process for this terminal
     | Failed to execute child process "oe-gnome-terminal-phonehome" (No such file or directory)
    
    The --disable-factory option was removed by:
    
      http://git.openembedded.org/openembedded-core/commit/?id=e8dca725ed8211a874472300a3ed50e494039ab9
    
    apparently based on an assuption that mate-terminal continues to
    track gnome-terminal since forking from it. However, based on the
    mate-terminal man page in the upstream master branch, the option is
    still supported:
    
      https://github.com/mate-desktop/mate-terminal
    
    Signed-off-by: Andre McCurdy <armccurdy at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/terminal.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 714772f..89ddb46 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -65,7 +65,7 @@ class Gnome(XTerminal):
         XTerminal.__init__(self, sh_cmd, title, env, d)
 
 class Mate(XTerminal):
-    command = 'mate-terminal -t "{title}" -x {command}'
+    command = 'mate-terminal --disable-factory -t "{title}" -x {command}'
     priority = 2
 
 class Xfce(XTerminal):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list