From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f46.google.com (mail-pa0-f46.google.com [209.85.220.46]) by dpdk.org (Postfix) with ESMTP id C8FB98D99 for ; Wed, 2 Dec 2015 05:05:01 +0100 (CET) Received: by padhx2 with SMTP id hx2so27124610pad.1 for ; Tue, 01 Dec 2015 20:05:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=csqpuNWb/2NnSPOwGlVqoda/v+O2vV/nqpXTS+oX7Yo=; b=Fgs9LbL8EC2G9Wi6DQPI12qbl61i0k9sMo49/IKSdq58Y5mPiM7FX+h70ROU7720zD J9nVJ/DIajGbqrTjZ5nFLF8bb9gDiaRtVqaeQ5C4WNcpB9TLJ2KOqZE6DLSzP6nttipD fhBHVVaov48EUuKjHexID69/1ptxxiNvGcRCe4ITZNDjo/zfeF/MfKYENdjUW3NMmilO ZBNf+izUziD5ifMoqZ9m/2uXB8sMtpfdy81Hl7KvAtTajdiErPVMTTWeYkOeaulp8R2G 7ALOj/GwfqA+xRg4UW9aLeurEMykfw7d5OYVICftS50b0P6Fdz2RgtE6Qj6+0JYgUktd 0uIw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=csqpuNWb/2NnSPOwGlVqoda/v+O2vV/nqpXTS+oX7Yo=; b=Tf9IHyWPMf1GBWxFORocRsP63aKJiKzIs6wQmoT8dSwOLs7SLslEcj/nNAWb0Jflru NLTtgxnoLVEb6lClnSvoa8gETfcRc6smoDuPhACEld4+J/IED9w+p7XJU7wKaLRfqUhT 3ewdxgYaiagtRCZ178qXSeYHc5LR1aVryOT5+xEYTIYsEoj4hu5IFl/vG+LlWOj2Ht5P vw8y297xfvYJSXe8pg3OsIrqFPhEZQnwoTaM6dGZyxXV3qFQelB9rpa6JUy3PW1B6v7y ydxKekhLCpA9piIfiQC+vrEfAZ49eUiMV4a9QjZA/hnTlOijgXfi0qGLQ2Mnmav6/m1c ndVw== X-Gm-Message-State: ALoCoQn2eZdmKM4kq4EM8cc90A9lm2tiicJkpf+iHgXAMunG1zW20MDWhxNxd4+wVFMAHG1gP1F2 X-Received: by 10.66.192.193 with SMTP id hi1mr1521938pac.110.1449029101254; Tue, 01 Dec 2015 20:05:01 -0800 (PST) Received: from xeon-e3.home.lan (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by smtp.gmail.com with ESMTPSA id tb8sm864654pab.22.2015.12.01.20.05.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 01 Dec 2015 20:05:00 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Date: Tue, 1 Dec 2015 20:05:08 -0800 Message-Id: <1449029109-12418-2-git-send-email-stephen@networkplumber.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1449029109-12418-1-git-send-email-stephen@networkplumber.org> References: <1449029109-12418-1-git-send-email-stephen@networkplumber.org> Subject: [dpdk-dev] [PATCH 1/2] cmdline_test: add missing dependencies 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: Wed, 02 Dec 2015 04:05:02 -0000 The cmdline test is missing a necessary dependency on other components. This caused a build failure when doing parallel builds. Signed-off-by: Stephen Hemminger --- app/cmdline_test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/cmdline_test/Makefile b/app/cmdline_test/Makefile index e9eafd2..c6169f5 100644 --- a/app/cmdline_test/Makefile +++ b/app/cmdline_test/Makefile @@ -47,6 +47,9 @@ SRCS-y += commands.c CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) +# this application needs libraries first +DEPDIRS-y += lib drivers + include $(RTE_SDK)/mk/rte.app.mk endif -- 2.1.4