From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 266F01F5 for ; Wed, 20 Sep 2017 12:10:24 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 330927E44D; Wed, 20 Sep 2017 10:10:24 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 330927E44D Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=tredaelli@redhat.com Received: from [10.40.204.72] (ovpn-204-72.brq.redhat.com [10.40.204.72]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D968E6060A; Wed, 20 Sep 2017 10:10:21 +0000 (UTC) To: Bruce Richardson , dev@dpdk.org Cc: nhorman@tuxdriver.com, luca.boccassi@gmail.com, harry.van.haaren@intel.com, keith.wiles@intel.com References: <20170912103809.140473-1-bruce.richardson@intel.com> <20170913141222.253688-1-bruce.richardson@intel.com> <20170913141222.253688-2-bruce.richardson@intel.com> From: "Timothy M. Redaelli" X-Clacks-Overhead: GNU Terry Pratchett Message-ID: Date: Wed, 20 Sep 2017 12:10:19 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <20170913141222.253688-2-bruce.richardson@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Wed, 20 Sep 2017 10:10:24 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH v3 01/17] build: add initial infrastructure for meson & ninja builds X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Sep 2017 10:10:25 -0000 On 09/13/2017 04:12 PM, Bruce Richardson wrote: [...] > + > +# for static libs, treat the drivers as regular libraries, otherwise > +# for shared libs, put them in a driver folder > +if get_option('default_library') == 'static' > + driver_install_path = get_option('libdir') > +else > + driver_install_path = join_paths(get_option('datadir'), 'dpdk/drivers') > +endif This is against hier, since: "This directory contains subdirectories with specific application data, that can be shared among different architectures of the same OS." (from man 7 hier) Please consider to use a subdirectory of libdir like the actual dpdk instead.