From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id E117C5586 for ; Fri, 15 Jul 2016 17:24:23 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id o80so34726854wme.1 for ; Fri, 15 Jul 2016 08:24:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=CMoPJ/YsKvphDfkoY/xSw9pxRpLfx/R1KnrGlkIRU6I=; b=PhLPWTEi6Cg7bnONugonZdxdWoeibqFy5UGvWe4623AmVTmjOAmOYsNIo1bjN4qH63 04yJ4kK/7X3MsDekSc3H2Ruv5R+7laPmgNQ6PiwTQqKKptph0DcU8UVSPexZbwAfRMdG kHYqwR/F8hv/k79FV+fxWhY0yxzZ1rE+kqbxXrCYhDboLOONvDFusOqRupaXob9X0Int 3++7unc88oLam4eXPDGTxwYThAxZ6mN5f5xAaVvoiRNOKsOrOloAf2Hvfdx4J9I7zhmC E7zh76EybwgJTZ+OUoBxyZ45JQCiJsw6GokxMeaKUBZn5eXBvzZ2icNmUs1fHRh8mfrW YK6A== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=CMoPJ/YsKvphDfkoY/xSw9pxRpLfx/R1KnrGlkIRU6I=; b=NvjOwQLW6m7dBtwDsiKOa/7CnerHTAc7Go3s7VGAgF2FY/UqSrcBKhYCq1nYd8GzqN +r7PSXBcHE70/glAFq8EuJZ1uQ/mtv7Rom/utMfkcrVrTn16HdzF3WEj469G6jJdplP8 PDytSw0QCUs/5l7vvydnBT/2e6Mdig7EORZ7cKzaNljG0q7lb28+T10NBy4AQgh7MsQC N/8sNltNF3mivs11xTgS4zcJSizPAhMHvGzWXBXLh0W/1Rfx6rXXWmeNoGbaa4UIR0qm vFH9I/jdB0k56/yRfpu+w+QPK8PIfgn6TahQabhB5xnXPvrnFtqDQjgpnOTWnzMqChDl zkXA== X-Gm-Message-State: ALyK8tKawyfbMNqqUY90zl1m5BCAdY88zvFNIdoeff1mIXIZHeDE4VaE1v29vqkj3IuRzeh2 X-Received: by 10.28.36.136 with SMTP id k130mr22865487wmk.4.1468596263720; Fri, 15 Jul 2016 08:24:23 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id p83sm6420538wma.18.2016.07.15.08.24.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jul 2016 08:24:23 -0700 (PDT) From: Thomas Monjalon To: "Pattan, Reshma" Cc: dev@dpdk.org Date: Fri, 15 Jul 2016 17:24:22 +0200 Message-ID: <7776795.an43Wffkga@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <3AEA2BF9852C6F48A459DA490692831F0105A0BB@IRSMSX109.ger.corp.intel.com> References: <1468318944-19477-1-git-send-email-thomas.monjalon@6wind.com> <3AEA2BF9852C6F48A459DA490692831F0105A0BB@IRSMSX109.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mk: fix default rule of test subdirectory 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: Fri, 15 Jul 2016 15:24:24 -0000 > > When using "make -C app/test" (with RTE_SDK/RTE_TARGET adjusted) without > > specifying the rule (all), the build is not done. > > Indeed the default rule is not "all" anymore since there are some rules added for > > external resources link. > > > > It is fixed by adding a reference to "all" at the top of the file which makes it the > > default rule. > > > > Note that make app/test_sub (without environment variable) is preffered. > > > > Fixes: ab64f5df8004 ("app/test: support resources externally linked") > > > > Reported-by: Reshma Pattan > > Signed-off-by: Thomas Monjalon > > Acked-by: Reshma Pattan Applied