diff options
-rw-r--r-- | src/qtchooser/main.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/qtchooser/main.cpp b/src/qtchooser/main.cpp index da54b16..514503d 100644 --- a/src/qtchooser/main.cpp +++ b/src/qtchooser/main.cpp @@ -272,12 +272,13 @@ vector<string> ToolWrapper::searchPaths() const { vector<string> paths; - // search the XDG config location directories - paths = stringSplit(qgetenv("XDG_CONFIG_DIRS", "/etc/xdg").c_str()); - string localDir = qgetenv("XDG_CONFIG_HOME", userHome() + PATH_SEP ".config"); paths.push_back(localDir); + // search the XDG config location directories + vector<string> xdgPaths = stringSplit(qgetenv("XDG_CONFIG_DIRS", "/etc/xdg").c_str()); + paths.insert(paths.end(), xdgPaths.begin(), xdgPaths.end()); + for (vector<string>::iterator it = paths.begin(); it != paths.end(); ++it) *it += "/qtchooser/"; |