diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-08-16 09:19:41 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-08-16 09:19:41 -0700 |
commit | a0ff8dcab22843e397fab8cc34932ac44bcc1a94 (patch) | |
tree | 52304b9a9923191ba0c16768b1f8174fae99e938 /gnuradio-runtime/lib/sys_paths.cc | |
parent | b15d2d335ac0310cfb9fc5c966d61d8c9e96e849 (diff) | |
parent | 7e689f27b5ddcf060334ce753ec8d3cf850e9b9a (diff) |
Merge branch 'next' into next-qt5
Diffstat (limited to 'gnuradio-runtime/lib/sys_paths.cc')
-rw-r--r-- | gnuradio-runtime/lib/sys_paths.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/sys_paths.cc b/gnuradio-runtime/lib/sys_paths.cc index 3bf6697bac..f63d7730e4 100644 --- a/gnuradio-runtime/lib/sys_paths.cc +++ b/gnuradio-runtime/lib/sys_paths.cc @@ -64,10 +64,16 @@ namespace gr { return tmp_path(); } - const char *userconf_path() + std::string __userconf_path() { boost::filesystem::path p(appdata_path()); p = p / ".gnuradio"; + return p.string(); + } + + const char *userconf_path() + { + static std::string p(__userconf_path()); return p.c_str(); } |