0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-09 11:22:27 +00:00
Files
termux-packages/packages/vera/boost1.87.patch
Aditya Alok 2f943f76d9 pkg(main/vera): Add patch for boost 1.87
- Authored by @thunder-coding

Signed-off-by: Aditya Alok <alok@termux.dev>
2025-03-19 21:52:50 +05:30

30 lines
999 B
Diff

--- ./src/executable_path.cpp.orig 2024-12-22 13:22:59.055393380 +0000
+++ ./src/executable_path.cpp 2024-12-22 13:24:46.601801274 +0000
@@ -42,7 +42,7 @@
}
boost::filesystem::path full_path(
boost::filesystem::system_complete(
- boost::filesystem::path(buf).normalize()));
+ boost::filesystem::path(buf).lexically_normal()));
return full_path.string();
}
@@ -76,7 +76,7 @@
std::string path(buf, size);
boost::filesystem::path full_path(
boost::filesystem::system_complete(
- boost::filesystem::path(path).normalize()));
+ boost::filesystem::path(path).lexically_normal()));
return full_path.string();
}
@@ -95,7 +95,7 @@
std::string path(buf, size);
boost::filesystem::path full_path(
boost::filesystem::system_complete(
- boost::filesystem::path(path).normalize()));
+ boost::filesystem::path(path).lexically_normal()));
return full_path.string();
}