From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH v3] build: move variable definition to top level Date: Thu, 7 Mar 2019 10:18:48 +0000 Message-ID: <20190307101847.GA374484@bricha3-MOBL.ger.corp.intel.com> References: <1551803365-79357-1-git-send-email-andrius.sirvys@intel.com> <1551952591-102518-1-git-send-email-andrius.sirvys@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Andrius Sirvys Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 1883027D for ; Thu, 7 Mar 2019 11:18:51 +0100 (CET) Content-Disposition: inline In-Reply-To: <1551952591-102518-1-git-send-email-andrius.sirvys@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Mar 07, 2019 at 09:56:31AM +0000, Andrius Sirvys wrote: > If for debugging we disable the driver directory in the meson.build file, > we get an error because the variable "driver_classes" does not exist. > This is because driver_classes is only defined in the > drivers/meson.build file. Defining driver_classes in dpdk/meson.build file > will make it easier for compiling separate directories. > > In the process, we rename driver_classes to dpdk_driver_classes for > consistency with the other variables. > > Signed-off-by: Andrius Sirvys > --- Acked-by: Bruce Richardson