-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scripts/msys => scripts/cmake #32375
Conversation
The "msys" directory looked like a "maintainer help" directory (like scripts/boost is) so it wasn't included in standalone distributions of vcpkg. It seems like the correct fix for this is just to move it into the scripts/cmake directory.
@@ -283,7 +283,7 @@ macro(z_vcpkg_acquire_msys_declare_all_packages) | |||
URL "https://mirror.msys2.org/msys/x86_64/automake1.16-1.16.5-1-any.pkg.tar.zst" | |||
SHA512 62c9dfe28d6f1d60310f49319723862d29fc1a49f7be82513a4bf1e2187ecd4023086faf9914ddb6701c7c1e066ac852c0209db2c058f3865910035372a4840a | |||
DEPS bash perl | |||
PATCHES "${SCRIPTS}/msys/compile_wrapper_consider_clang-cl.patch" | |||
PATCHES "${CMAKE_CURRENT_LIST_DIR}/compile_wrapper_consider_clang-cl.patch" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this please be moved into a subfolder? to separate patches and scripts ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do we gain by separating those?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to merge as is for now but if there are many many patches in the future we can always move it again.
Issue: #31565 |
The "msys" directory looked like a "maintainer help" directory (like scripts/boost is) so it wasn't included in standalone distributions of vcpkg.
It seems like the correct fix for this is just to move it into the scripts/cmake directory.
Fixes: #31565