[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 03/06: grc: better Popen argument handling
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 03/06: grc: better Popen argument handling for CLI based apps |
Date: |
Sun, 14 Jun 2015 16:34:14 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit f184ccf0efcd52d455f8af13aae3d8eeeeefbfaa
Author: Tim K <address@hidden>
Date: Mon Jun 1 15:31:04 2015 -0400
grc: better Popen argument handling for CLI based apps
"python -u ..." argument to "xterm -e" should be treated as all one argument
---
grc/python/Generator.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index a3f9f10..fc1dd56 100644
--- a/grc/python/Generator.py
+++ b/grc/python/Generator.py
@@ -129,7 +129,7 @@ class TopBlockGenerator(object):
# when in no gui mode on linux, use a graphical terminal (looks nice)
xterm_executable = find_executable(XTERM_EXECUTABLE)
if self._generate_options == 'no_gui' and xterm_executable:
- cmds = [xterm_executable, '-e'] + cmds
+ cmds = [xterm_executable, '-e'] + ' '.join(cmds)
p = subprocess.Popen(
args=cmds, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
- [Commit-gnuradio] [gnuradio] branch maint updated (e8165e7 -> 1ff0e74), git, 2015/06/14
- [Commit-gnuradio] [gnuradio] 03/06: grc: better Popen argument handling for CLI based apps,
git <=
- [Commit-gnuradio] [gnuradio] 05/06: grc: save grc files utf-8 encoded (#792), git, 2015/06/14
- [Commit-gnuradio] [gnuradio] 01/06: grc: stop using gtk forall() (#793), git, 2015/06/14
- [Commit-gnuradio] [gnuradio] 02/06: grc: fix file load error when connections are not unique (#794), git, 2015/06/14
- [Commit-gnuradio] [gnuradio] 06/06: Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into maint, git, 2015/06/14
- [Commit-gnuradio] [gnuradio] 04/06: grc: clean-up ParseXML, git, 2015/06/14