-
Notifications
You must be signed in to change notification settings - Fork 2.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
Fix all.sh --force #6248
Fix all.sh --force #6248
Conversation
This caused `all.sh --force` to fail on a clean build tree. Signed-off-by: Gilles Peskine <[email protected]>
Other programs/*/Makefile are only created by CMake, but programs/fuzz has its own Makefile in the repository. Fixes Mbed-TLS#6247. Signed-off-by: Gilles Peskine <[email protected]>
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.
One minor point, not a blocker. Looks good otherwise.
@@ -295,7 +298,7 @@ cleanup() | |||
-iname CMakeCache.txt -o \ | |||
-path './cmake/*.cmake' \) -exec rm -f {} \+ | |||
# Recover files overwritten by in-tree CMake builds |
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.
Not a blocker but it would seem good to add a comment here explaining that fuzz
has a checked-in Makefile
not generated by CMake (it's not obvious precisely why we skip this directory).
@gilles-peskine-arm Just a gentle remainder that this is waiting for a backport, but would be ready for merge otherwise. |
Fix #6247
Backport: #6309