summaryrefslogtreecommitdiffstats
path: root/host/lib/utils
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-08-15 12:18:51 -0700
committerJosh Blum <josh@joshknows.com>2010-08-15 12:18:51 -0700
commita8a4d6c0c81cdb7d7577b9e696a18580717d0324 (patch)
tree7d98b0f47d4a706845995fd6179c7aae956a050d /host/lib/utils
parent45c952399b92d5dc618c469cf48c9980ee6f0e80 (diff)
parent7b084e3af206afa20ff5a026ebf5d7e49a755def (diff)
downloaduhd-a8a4d6c0c81cdb7d7577b9e696a18580717d0324.tar.gz
uhd-a8a4d6c0c81cdb7d7577b9e696a18580717d0324.tar.bz2
uhd-a8a4d6c0c81cdb7d7577b9e696a18580717d0324.zip
Merge branch 'next' into usrp1
Diffstat (limited to 'host/lib/utils')
-rw-r--r--host/lib/utils/paths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/utils/paths.cpp b/host/lib/utils/paths.cpp
index 9ac20d855..3f29945dd 100644
--- a/host/lib/utils/paths.cpp
+++ b/host/lib/utils/paths.cpp
@@ -72,13 +72,13 @@ static std::vector<fs::path> get_env_paths(const std::string &var_name){
**********************************************************************/
std::vector<fs::path> get_image_paths(void){
std::vector<fs::path> paths = get_env_paths("UHD_IMAGE_PATH");
- paths.push_back(fs::path(UHD_INSTALL_PREFIX) / UHD_PKG_DATA_DIR / "images");
+ paths.push_back(fs::path(FULL_PKG_DATA_DIR) / "images");
return paths;
}
std::vector<fs::path> get_module_paths(void){
std::vector<fs::path> paths = get_env_paths("UHD_MODULE_PATH");
- paths.push_back(fs::path(UHD_INSTALL_PREFIX) / UHD_PKG_DATA_DIR / "modules");
+ paths.push_back(fs::path(FULL_PKG_DATA_DIR) / "modules");
return paths;
}