From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176]) by dpdk.org (Postfix) with ESMTP id 3B00B687E for ; Mon, 18 Nov 2013 23:30:11 +0100 (CET) Received: by mail-wi0-f176.google.com with SMTP id f4so4602079wiw.3 for ; Mon, 18 Nov 2013 14:31:08 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=77M6H0GmwjR7yy/oV/DYmtjknOtiDZbDeeAmjBHTcGU=; b=NUItGvJQM8/pOGR5mNwTM4RPSrdVNtBs9Jzwoy3tYDLIhgFs1j/dw+0rnoUPzzgi2m 1dstHpPS2eDXsuADN5eyTzSTPTb18t8SHCbDx2K+aqpPLyDHgnxNh+ghpZjjt5Gt4G3D eSmtb81xRKbMIobDHqwA3Te9nx/Iy46//zTewt/XYLuCs5x5HRNjrXrEOVXtzTR6/ubf fiJ2hmc2Dx5jmmcsP+RTQI39qKCbsuPPYO843tIkAWeqO76QKAyE0V0oGcBbWUiKf2Eq CEzM7+1X2Zmvhfi8m2J4iWbVoVMut/JVbvwA1PPFQmbkEvbTC+ixkNAvUeAn1ZA6ruZm ikjA== X-Gm-Message-State: ALoCoQm3f2RisxN/u8C7PLAMhfKpuUIJoBaWQvkpg+kyHRNXRiIMVji9Mpx6QkhwnzLlOI6fgckL X-Received: by 10.180.89.1 with SMTP id bk1mr15900585wib.17.1384813868578; Mon, 18 Nov 2013 14:31:08 -0800 (PST) Received: from 6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id ll10sm28426857wic.9.2013.11.18.14.31.06 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 18 Nov 2013 14:31:07 -0800 (PST) Received: by 6wind.com (sSMTP sendmail emulation); Mon, 18 Nov 2013 23:31:05 +0100 From: Thomas Monjalon To: dev@dpdk.org Date: Mon, 18 Nov 2013 23:31:00 +0100 Message-Id: <5b5f0bdcc20741f370901dff4267dc45f0a8ae44.1384813681.git.thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH 1/3] app/cmdline_test: fix build without app/test X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Nov 2013 22:30:11 -0000 This application is built if LIBRTE_CMDLINE is enabled. But there was no enabled source file if APP_TEST is disabled. Let's consider that CONFIG_RTE_APP_TEST apply only on app/test. Signed-off-by: Thomas Monjalon --- app/cmdline_test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cmdline_test/Makefile b/app/cmdline_test/Makefile index 00b398c..dab678a 100644 --- a/app/cmdline_test/Makefile +++ b/app/cmdline_test/Makefile @@ -39,8 +39,8 @@ APP = cmdline_test # # all sources are stored in SRCS-y # -SRCS-$(CONFIG_RTE_APP_TEST) += cmdline_test.c -SRCS-$(CONFIG_RTE_APP_TEST) += commands.c +SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_test.c +SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += commands.c CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) -- 1.7.10.4