Skip to content

Commit

Permalink
src/ETISSInit.cpp: Join etiss_wd lib_dirs with / instead of +
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Aug 28, 2024
1 parent acc1747 commit 22eb958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ETISSInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void etiss::preloadLibraries()
std::vector<std::string> libs;
for (auto itr = lib_dirs.begin(); itr != lib_dirs.end(); ++itr)
{
findLibs(boost::filesystem::path(etiss_path + *itr), libs);
findLibs(boost::filesystem::path(etiss_path) / *itr, libs);
}
for (auto itr = libs.begin(); itr != libs.end(); ++itr)
{
Expand Down

0 comments on commit 22eb958

Please sign in to comment.