From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id D2F81A00E6 for ; Fri, 17 May 2019 15:12:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A5B3E5F27; Fri, 17 May 2019 15:12:39 +0200 (CEST) Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id 164725F1F for ; Fri, 17 May 2019 15:12:39 +0200 (CEST) Received: by mail-wm1-f66.google.com with SMTP id 198so6905329wme.3 for ; Fri, 17 May 2019 06:12:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=n+LShAr55xlf81fupvjIRwym/IqVdtgzD/kXtCg/Cpw=; b=LKoBDOTC4TQl46PwqR04KP0SXb51H+6/0cIXYOL/5dDrfCIoJPakvw+dqpuJiYioGE oWPvB3kMSXmuvKlYDQsCskNHbb/2GAjianckynnKzBQZWbfI8c/4SCpwe1jDGgIw9onq VRg1kruk1brOQm5+Bj4ZlHyDDRbrnwAcpbTxQCcOrRmUNiL4MCaB/GiKQY5GaZNpIVMo JWyXRGuF9WxyD4r8KLsJZi8Bv3t2qbtQZLCVtH580C5cxoRS34budm2JRx9hLILJF+VC oTRoyQO97b0LM4fN0efo0KywirWGhYPJEHeBVRxthOsUg+Ig9LaZ0cysUlv3/9K1vvTg LpJA== X-Gm-Message-State: APjAAAVHs87wN/Wj3AqEsbC/fGBs2DM3ASKO/cLtF6yiNS1nrdYfReBh iUdMMOniqKaUfduRn5cwj6Y= X-Google-Smtp-Source: APXvYqy7bBl7uBqZN+4vzk5pPj8QqZhGBreGjvfpfSrE6cDtEu/7B4hUo/DQkwTFX/hviVWWyV5Fbw== X-Received: by 2002:a7b:c844:: with SMTP id c4mr2239689wml.108.1558098758455; Fri, 17 May 2019 06:12:38 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id 34sm11372850wre.32.2019.05.17.06.12.37 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 17 May 2019 06:12:37 -0700 (PDT) Message-ID: <6ab4a7fd74ac27135be52c736ee216b9636aecca.camel@debian.org> From: Luca Boccassi To: Bruce Richardson , dev@dpdk.org Date: Fri, 17 May 2019 14:12:36 +0100 In-Reply-To: <20190517120231.15898-1-bruce.richardson@intel.com> References: <20190517114613.7027-1-bruce.richardson@intel.com> <20190517120231.15898-1-bruce.richardson@intel.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1 MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/3] Fixes for building examples 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" On Fri, 2019-05-17 at 13:02 +0100, Bruce Richardson wrote: > A small set of fixes for building examples, that was previously part > of > the larger set, but pulled out separately for easier apply. >=20 > V3: changed patch 1, to properly quit processing examples/meson.build > if the examples list was empty. >=20 > Bruce Richardson (3): > examples: fix install of sample apps if setting not provided > examples: remove auto-generation of examples list > examples: fix make clean when using pkg-config for building >=20 > examples/bbdev_app/Makefile | 2 +- > examples/bond/Makefile | 2 +- > examples/cmdline/Makefile | 2 +- > examples/distributor/Makefile | 2 +- > examples/eventdev_pipeline/Makefile | 2 +- > examples/exception_path/Makefile | 2 +- > examples/fips_validation/Makefile | 2 +- > examples/flow_classify/Makefile | 2 +- > examples/flow_filtering/Makefile | 2 +- > examples/helloworld/Makefile | 2 +- > examples/ip_fragmentation/Makefile | 2 +- > examples/ip_pipeline/Makefile | 2 +- > examples/ip_reassembly/Makefile | 2 +- > examples/ipsec-secgw/Makefile | 2 +- > examples/ipv4_multicast/Makefile | 2 +- > examples/kni/Makefile | 2 +- > examples/l2fwd-cat/Makefile | 2 +- > examples/l2fwd-crypto/Makefile | 2 +- > examples/l2fwd-jobstats/Makefile | 2 +- > examples/l2fwd-keepalive/Makefile | 2 +- > examples/l2fwd/Makefile | 2 +- > examples/l3fwd-acl/Makefile | 2 +- > examples/l3fwd-power/Makefile | 2 +- > examples/l3fwd-vf/Makefile | 2 +- > examples/l3fwd/Makefile | 2 +- > examples/link_status_interrupt/Makefile | 2 +- > examples/load_balancer/Makefile | 2 +- > examples/meson.build | 35 ++++++++++++++++++++++- > -- > examples/packet_ordering/Makefile | 2 +- > examples/ptpclient/Makefile | 2 +- > examples/qos_meter/Makefile | 2 +- > examples/qos_sched/Makefile | 2 +- > examples/rxtx_callbacks/Makefile | 2 +- > examples/service_cores/Makefile | 2 +- > examples/skeleton/Makefile | 2 +- > examples/tep_termination/Makefile | 2 +- > examples/timer/Makefile | 2 +- > examples/vhost/Makefile | 2 +- > examples/vhost_scsi/Makefile | 2 +- > examples/vmdq/Makefile | 2 +- > examples/vmdq_dcb/Makefile | 2 +- > meson.build | 7 +++-- > 42 files changed, 75 insertions(+), 47 deletions(-) Series-acked-by: Luca Boccassi --=20 Kind regards, Luca Boccassi