3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/openal-soft/search-out.patch

13 lines
361 B
Diff
Raw Normal View History

2021-08-21 16:00:51 +01:00
diff --git a/alc/helpers.cpp b/alc/helpers.cpp
index 8c1c856..19bbc0f 100644
--- a/alc/helpers.cpp
+++ b/alc/helpers.cpp
@@ -402,6 +402,7 @@ al::vector<std::string> SearchDataFiles(const char *ext, const char *subdir)
2021-08-21 16:00:51 +01:00
DirectorySearch(path.c_str(), ext, &results);
}
2021-08-21 16:00:51 +01:00
+ DirectorySearch("@OUT@/share/", ext, &results);
2021-08-21 16:00:51 +01:00
return results;
}