From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8CFDBC282DD for ; Thu, 9 Jan 2020 14:28:30 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 4810B2072A for ; Thu, 9 Jan 2020 14:28:30 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="XO8GkRL0" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4810B2072A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 945421DE23; Thu, 9 Jan 2020 15:28:29 +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 7E43D1DE1C for ; Thu, 9 Jan 2020 15:28:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578580107; 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=hvSNfLh0KuZWR2VFXY+/SEsjr6HttdeAdrCXmuJufWM=; b=XO8GkRL0LDK51oQjKqY4wgCnuSfcNKz/NKZXsZkekghuZa1IyuZ2mdcuZALwmCEzjZyz5V 94yo9GbFiI4lZJXKYTuuis7Z+8XRc2sh1DRc1wGF6dAapkS6nNRoNQu+H9KBt5x5XE+IiW UQ6++zv4k+d/1m3WKja4Pq0AliGXFy8= 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-25-xkG2xwKZNBui20EcQiypzA-1; Thu, 09 Jan 2020 09:28:24 -0500 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 mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7B8A98024D8; Thu, 9 Jan 2020 14:28:23 +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 144EE81C2E; Thu, 9 Jan 2020 14:28:19 +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-7-bruce.richardson@intel.com> Date: Thu, 09 Jan 2020 09:28:18 -0500 In-Reply-To: <20200109120801.500394-7-bruce.richardson@intel.com> (Bruce Richardson's message of "Thu, 9 Jan 2020 12:08:01 +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.13 X-MC-Unique: xkG2xwKZNBui20EcQiypzA-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2 6/6] doc/api: reduce indentation in meson build file 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: > When building the API docs, we can make the meson.build file easier to > read, and allow more code per line, by using subdir_done() to quit early. > > Signed-off-by: Bruce Richardson > --- Acked-by: Aaron Conole