There was a typo in the .PHONY for the test-build target. If we fix the typo, the test-build target does not work, because it won't match the '%' target anymore.
So just remove the .PHONY. Fixes: 64592d97c1ae ("mk: do not build tests by default") Signed-off-by: Olivier Matz <olivier.m...@6wind.com> --- mk/rte.sdkroot.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index 7598bde..f20563e 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -96,7 +96,6 @@ config showconfigs showversion showversionum: test test-basic test-fast test-ring test-mempool test-perf coverage: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktest.mk $@ -.PHONY: test-buid test: test-build .PHONY: install -- 2.8.1