From patchwork Fri Mar 17 17:08:53 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 21892 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id F393ACFA0; Fri, 17 Mar 2017 19:00:13 +0100 (CET) Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 4AB73CF7A for ; Fri, 17 Mar 2017 18:09:04 +0100 (CET) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id D5CE8250AC; Fri, 17 Mar 2017 18:08:59 +0100 (CET) From: Olivier Matz To: dev@dpdk.org Cc: thomas.monjalon@6wind.com, ferruh.yigit@intel.com Date: Fri, 17 Mar 2017 18:08:53 +0100 Message-Id: <1489770533-25754-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.8.1 Subject: [dpdk-dev] [PATCH] mk: remove invalid phony target X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 Acked-by: Ferruh Yigit --- 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