diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-15 15:40:57 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-15 15:40:57 -0700 |
commit | ffe1a7a6fecbc46ff39ade85d7250f57c4394fd3 (patch) | |
tree | 7f2a5598ea88cecd8fc469b44227cb2d74177ff3 /grc/python/Constants.py | |
parent | 8be0efd4fb448489e74de562cfb07cc7f6610a19 (diff) | |
parent | 14625c6ed115af2206e379bc92ad2adf96f6cff9 (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/grc_block_and_prefs_path'
Diffstat (limited to 'grc/python/Constants.py')
-rw-r--r-- | grc/python/Constants.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/grc/python/Constants.py b/grc/python/Constants.py index 0e974df43c..79ff8bab35 100644 --- a/grc/python/Constants.py +++ b/grc/python/Constants.py @@ -25,7 +25,10 @@ _gr_prefs = gr.prefs() #setup paths PATH_SEP = {'/':':', '\\':';'}[os.path.sep] -HIER_BLOCKS_LIB_DIR = os.path.join(os.path.expanduser('~'), '.grc_gnuradio') +HIER_BLOCKS_LIB_DIR = os.environ.get('GRC_HIER_PATH', + os.path.expanduser('~/.grc_gnuradio')) +PREFS_FILE = os.environ.get('GRC_PREFS_PATH', + os.path.join(os.path.expanduser('~/.grc'))) BLOCKS_DIRS = filter( #filter blank strings lambda x: x, PATH_SEP.join([ os.environ.get('GRC_BLOCKS_PATH', ''), |