We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For the following line, ninja report error 'inline_value1' doesn't match the target pattern.
'inline_value1' doesn't match the target pattern.
VAR := initvalue VAR += \ some_value1 \ some_value2 \ VAR += inline_value1 inline_value2
Mixing multiline with single line will cause this issue. And if I put single line ahead, the problem gone.
The text was updated successfully, but these errors were encountered:
Sorry, may be this isn't a common issue. I found this in PRODUCT_COPY_FILES variable in Android build system.
Sorry, something went wrong.
I can't reproduce this issue:
VAR := initvalue VAR += \ some_value1 \ some_value2 \ VAR += inline_value1 inline_value2 .PHONY: test test: echo $(VAR)
$ make -f test.mk echo initvalue some_value1 some_value2 inline_value1 inline_value2 initvalue some_value1 some_value2 inline_value1 inline_value2 $ ckati -f test.mk echo initvalue some_value1 some_value2 inline_value1 inline_value2 initvalue some_value1 some_value2 inline_value1 inline_value2
No branches or pull requests
For the following line, ninja report error
'inline_value1' doesn't match the target pattern.
Mixing multiline with single line will cause this issue. And if I put single line ahead, the problem gone.
The text was updated successfully, but these errors were encountered: