From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1EC9BA046B; Thu, 9 Jan 2020 15:20:06 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EFF441DDF9; Thu, 9 Jan 2020 15:20:05 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id B62A81DDF8 for ; Thu, 9 Jan 2020 15:20:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578579604; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VJDjLBUIr4ZJyJVN4dspzd3ieHIGKmuios/MevqUdpA=; b=Hcch2MdWv2hhQGswli7dwt9h9YTZi0No6ftoq1yfSF2SCyiSZuyuLuZEB8eaeJHHAZdz0F /gnjI13ErjsMIkkW7urO8gPFi5ljyXGpVmZEpzg+ot9EF/wAMf+b5q4PKnQ4MaB8AVe0y4 foDWosiKC5ogD7a7vy7QxH1bu2p2X4A= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-63-Obpt3jDJNfqTqVdFmu4WWQ-1; Thu, 09 Jan 2020 09:20:03 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C57BC800EBF; Thu, 9 Jan 2020 14:20:01 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-124-121.rdu2.redhat.com [10.10.124.121]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 3DD045D9C9; Thu, 9 Jan 2020 14:19:58 +0000 (UTC) From: Aaron Conole To: Bruce Richardson Cc: david.marchand@redhat.com, john.mcnamara@intel.com, bluca@debian.org, dev@dpdk.org, thomas@monjalon.net References: <20200109115631.500056-1-bruce.richardson@intel.com> <20200109120801.500394-1-bruce.richardson@intel.com> <20200109120801.500394-4-bruce.richardson@intel.com> Date: Thu, 09 Jan 2020 09:19:54 -0500 In-Reply-To: <20200109120801.500394-4-bruce.richardson@intel.com> (Bruce Richardson's message of "Thu, 9 Jan 2020 12:07:58 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-MC-Unique: Obpt3jDJNfqTqVdFmu4WWQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2 3/6] doc/api: fix warning with meson build 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Bruce Richardson writes: > The install parameter to configure_file is new in 0.50 and generates a > warning since it is newer than our minimum version of 0.47.1. The > parameter, however, is unneeded as the documentation states: > > "When omitted it defaults to true when install_dir is set and not empty, > false otherwise." > > Given that install_dir is not set for this file, install defaults to fals= e > so no need to explicitly specify it. > > Fixes: 720b14db3ae2 ("build: generate API documentation with meson") > Cc: bluca@debian.org > > Signed-off-by: Bruce Richardson > --- Acked-by: Aaron Conole