summaryrefslogtreecommitdiff
path: root/grc
diff options
context:
space:
mode:
authorJosh Blum2011-05-18 10:24:52 -0700
committerJosh Blum2011-06-09 10:12:09 -0700
commit665b6e550bb344abddd111c51b2bd1fb10f042c4 (patch)
treed5de47ccccc145c4eaea76202424814bd49c4a56 /grc
parentd3d68e529063dceaec49e7ca06b8dc3b1f7bde0f (diff)
downloadgnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.tar.gz
gnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.tar.bz2
gnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.zip
grc: disable pythonw on darwin, apparently not needed
Diffstat (limited to 'grc')
-rw-r--r--grc/python/Generator.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index b31f0a009..2a2dfdd49 100644
--- a/grc/python/Generator.py
+++ b/grc/python/Generator.py
@@ -78,8 +78,9 @@ Add a Misc->Throttle block to your flow graph to avoid CPU congestion.''')
python_exe = sys.executable
#when using wx gui on mac os, execute with pythonw
- if self._generate_options == 'wx_gui' and 'darwin' in sys.platform.lower():
- python_exe += 'w'
+ #using pythonw is not necessary anymore, disabled below
+ #if self._generate_options == 'wx_gui' and 'darwin' in sys.platform.lower():
+ # python_exe = 'pythonw'
#setup the command args to run
cmds = [python_exe, '-u', self.get_file_path()] #-u is unbuffered stdio