-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
build: make errors that occur in coverage-clean case and coverage-test in Makefile #55288
Comments
I can't reproduce the issue. Are you commands up-to-date?
|
My environment is below
I will check after commands update |
On Ubuntu 22.04, the latest version of the find command that doesn't touch core package dependencies seems to be 4.9
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
main
Platform
Subsystem
build
What steps will reproduce the bug?
or
How often does it reproduce? Is there a required condition?
always
What is the expected behavior? Why is that the expected behavior?
No make error occurs
What do you see instead?
Additional information
find's -exec option must end with a semicolon,
but in the previous code, depending on the shell, the semicolon was passed to the find command or was passed as the shell's command separator.
With this change, it will work normally in all shell types.
I attached a PR that works normally in my environment. #55287
The text was updated successfully, but these errors were encountered: