summaryrefslogtreecommitdiff
path: root/grc/scripts
diff options
context:
space:
mode:
authorJohnathan Corgan2012-02-02 13:34:32 -0800
committerJohnathan Corgan2012-02-02 13:34:32 -0800
commit309ca769afb74a091a5c923e1bb5fb71f535dee6 (patch)
tree157295dbe059cfd4318a3bb54e45a5d37c20dd91 /grc/scripts
parent00518cacb2620a18f3d473b8b7adcc21547034e6 (diff)
parent63ffe1ade4b582fc76a09139231dbf942c6ec85a (diff)
downloadgnuradio-309ca769afb74a091a5c923e1bb5fb71f535dee6.tar.gz
gnuradio-309ca769afb74a091a5c923e1bb5fb71f535dee6.tar.bz2
gnuradio-309ca769afb74a091a5c923e1bb5fb71f535dee6.zip
Merge branch 'maint'
Diffstat (limited to 'grc/scripts')
-rwxr-xr-xgrc/scripts/gnuradio-companion13
1 files changed, 11 insertions, 2 deletions
diff --git a/grc/scripts/gnuradio-companion b/grc/scripts/gnuradio-companion
index a4115c39f..e76322b4d 100755
--- a/grc/scripts/gnuradio-companion
+++ b/grc/scripts/gnuradio-companion
@@ -1,6 +1,6 @@
#!/usr/bin/env python
"""
-Copyright 2009 Free Software Foundation, Inc.
+Copyright 2009-2012 Free Software Foundation, Inc.
This file is part of GNU Radio
GNU Radio Companion is free software; you can redistribute it and/or
@@ -25,7 +25,16 @@ import gtk
try: from gnuradio import gr
except ImportError, e:
d = gtk.MessageDialog(type=gtk.MESSAGE_ERROR, buttons=gtk.BUTTONS_CLOSE, message_format="""
-Cannot import gnuradio. Are your PYTHONPATH and LD_LIBRARY_PATH set correctly?""")
+Cannot import gnuradio.
+
+Is the python path environment variable set correctly?
+ All OS: PYTHONPATH
+
+Is the library path environment variable set correctly?
+ Linux: LD_LIBRARY_PATH
+ Windows: PATH
+ MacOSX: DYLD_LIBRARY_PATH
+""")
d.set_title(str(e))
d.run()
exit(-1)