From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id EE20A235 for ; Wed, 20 Sep 2017 13:28:14 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Sep 2017 04:28:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,421,1500966000"; d="scan'208";a="1174109203" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.24]) by orsmga001.jf.intel.com with SMTP; 20 Sep 2017 04:28:11 -0700 Received: by (sSMTP sendmail emulation); Wed, 20 Sep 2017 12:28:11 +0100 Date: Wed, 20 Sep 2017 12:28:10 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: tredaelli@redhat.com Message-ID: <20170920112810.GA8248@bricha3-MOBL3.ger.corp.intel.com> References: <20170920105107.153935-1-bruce.richardson@intel.com> <20170920105107.153935-3-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170920105107.153935-3-bruce.richardson@intel.com> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.8.3 (2017-05-23) Subject: Re: [dpdk-dev] [PATCH 2/3] build: fix driver install path 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 11:28:15 -0000 +Timothy, since git doesn't seem to automatically add reporters on CC. On Wed, Sep 20, 2017 at 11:51:06AM +0100, Bruce Richardson wrote: > To comply with the "hier" standard [Ref: man 7 hier], the driver .so files > should not be placed in $datadir. Therefore we install them in a > sub-directory of $libdir instead. > > Fixes: d123bba2dfbe ("build: add initial infrastructure for meson & ninja builds") > > Reported-by: Timothy M. Redaelli > Signed-off-by: Bruce Richardson > --- > meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meson.build b/meson.build > index 41426a706..6e4752562 100644 > --- a/meson.build > +++ b/meson.build > @@ -48,7 +48,7 @@ dpdk_extra_ldflags = [] > if get_option('default_library') == 'static' > driver_install_path = get_option('libdir') > else > - driver_install_path = join_paths(get_option('datadir'), 'dpdk/drivers') > + driver_install_path = join_paths(get_option('libdir'), 'dpdk/drivers') > endif > > # configure the build, and make sure configs here and in config folder are > -- > 2.13.5 >