Skip to content
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

Makefile double colon rules without spaces are correct but break certain parsers #2

Open
john5342 opened this issue Mar 23, 2012 · 0 comments

Comments

@john5342
Copy link

Currently all the Makefile rules in the template use the form "target::". While this is perfectly valid it does break a number of Makefile parser which wrongly assume the first colon is a part of the target name instead of being a separator. Clearly the proper solution is to fix any parser that gets this wrong but changing the template would make ufo much more portable in the meantime.

For example change

all:: build

to

all :: build

Thanks :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant