-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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: there are two bench phony targets in the makefile #16968
Comments
Not really a bug. Multiple Since we're discussing this, maybe it's a good idea to switch to this style: .PHONY: foo
foo:
make_foo
.PHONY: bar
bar:
make_bar Makes it more obvious it's phony vis-a-vis hiding that fact at the end of the file. |
Added |
Hello @targos, @bnoordhuis .PHONY: foo
foo:
make_foo
.PHONY: bar
bar:
make_bar
# Redefinition
.PHONY: foo \
bar Maybe I can work on this |
@okyantoro Yes, but not the block you labeled 'redefinition.' |
@bnoordhuis I am still working on this. But I find targets below have no matching target inside Makefile.
Is it okay to delete these targets? |
@okyantoro Yes, that's fine. |
Before this change, the .PHONY is followed by multiple targets. Now it is multiple .PHONY for each target Refs: nodejs#16968
Before this change, the .PHONY is followed by multiple targets. Now it is multiple .PHONY for each target. PR-URL: nodejs#17964 Refs: nodejs#16968 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Fixed in #17964 |
What the title says. One of them should be removed.
node/Makefile
Lines 1121 to 1122 in c5a49e1
The text was updated successfully, but these errors were encountered: