From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: [PATCH 2/3] app/test: test_sched: fix needless build dependency on CONFIG_RTE_ARCH_X86_64 Date: Tue, 18 Aug 2015 18:10:04 +0530 Message-ID: <1439901605-31164-3-git-send-email-jerin.jacob@caviumnetworks.com> References: <1439901605-31164-1-git-send-email-jerin.jacob@caviumnetworks.com> <1439901605-31164-2-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain To: Return-path: Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1bon0055.outbound.protection.outlook.com [157.56.111.55]) by dpdk.org (Postfix) with ESMTP id 42FDB8E8E for ; Tue, 18 Aug 2015 14:41:35 +0200 (CEST) In-Reply-To: <1439901605-31164-2-git-send-email-jerin.jacob@caviumnetworks.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Jerin Jacob --- app/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/Makefile b/app/test/Makefile index e7f148f..43429b9 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -115,7 +115,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_lib.c ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y) SRCS-y += test_red.c -SRCS-$(CONFIG_RTE_ARCH_X86_64) += test_sched.c +SRCS-y += test_sched.c endif SRCS-$(CONFIG_RTE_LIBRTE_METER) += test_meter.c -- 2.1.0