Files
termux-packages/packages/vera/boost1.87.patch
termux-pacman-bot fd5ef95cc0 pkg(main/vera): Add patch for boost 1.87
- Authored by @thunder-coding

Signed-off-by: Aditya Alok <alok@termux.dev>
2025-03-19 16:41:28 +00:00

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();
}