You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Normalize CMake paths from 'dir/..' to '../dir' for compatibility
CMake and some build tools prefer the canonical '../dir/file' form over
'dir/../file', even though both are technically valid relative paths.
The pathdiff crate can generate 'dir/..' patterns when calculating
relative paths. This commit normalizes such patterns to the cleaner
'../dir' form for better tool compatibility.
Example:
- Before: cpp/../generated/file.cpp
- After: ../cpp/generated/file.cpp
Discovered while testing the RustBuffer fix on Android builds.
0 commit comments