From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id F0503214A for ; Fri, 10 Jun 2016 17:26:28 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id m124so106695833wme.1 for ; Fri, 10 Jun 2016 08:26:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=WXomhoKYN5Req4OIGVJ1pPAo+vcUaDie6ZfLurNJEdQ=; b=h9SMDviF2P/h/1DSMYTRP2BI21OrbsBbKu4N9mVchbzj8YhUnKgVSU4gdzwtsnons7 nvC6TsxPxh5KHkjEKmNaiHiCVnxTudkRw7KBwTjEIcVAM0luUxRKvZQNuQADi4YTXxe9 lMAkkmD4B7YU88i+BOb1u4ytJhGb5JYW2UNJiH0lwzA2kOV3b3nKWpk/MwNfEVD8gtFj PzDtA5rLteHZnOWNDnNQCceEf7VmTKsY6yUliu7iIP0pE6zSVOv3F+0mVcgRSPRMJLA9 NwMedq6W9Qub3GU/ozelC1ZEcwAFTtvwDOGfQAQ7PUNZk0c1CQmuOP0caPHBnbQIu7xB 4OVA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=WXomhoKYN5Req4OIGVJ1pPAo+vcUaDie6ZfLurNJEdQ=; b=Rah2nFllAAoQJPs02Yz7cs4W4X73ERHykbaY77w3oqZVKgpCrLc21ix+GhQAihUbQv /TsHPwHxDkeEvNC6VOr1WGopgrkBhMsMppf00us54WLXElpKiaXGCHYRoZuHbxj3S6ic MS0HBcVWgRp0gaOdlMcuLygKE1gAwM3tLBgI2BwfjqGkN37zZML/FCyFJvOLQ7EU8LRq yixbzKbDiENLJ9Vz7gNbhh0xQX/5pTs6B/8KmuBiOGyLaUQXxeFZmFT220yqycFcrcTD nVGzuCqSPt00xukx7xIzJViLvCaMGjcPnt3oOTimH0LXJ8uEiWkEdMe1+8lfO/44SEiX 5LIA== X-Gm-Message-State: ALyK8tJci8SC/wHGD25Ch3YnFXcY1FiBAh0g5kR18MXD/b//zr8rskxhz8ES21fWdnshABC+ X-Received: by 10.194.243.101 with SMTP id wx5mr2761727wjc.132.1465572388228; Fri, 10 Jun 2016 08:26:28 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id x194sm9629423wmf.13.2016.06.10.08.26.27 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 10 Jun 2016 08:26:27 -0700 (PDT) From: Thomas Monjalon To: Panu Matilainen Cc: dev@dpdk.org Date: Fri, 10 Jun 2016 17:26:26 +0200 Message-ID: <1707753.0XuFx6DF2X@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mk: Fix cruft getting installed by "make install" with tar >= 1.29 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Jun 2016 15:26:29 -0000 2016-05-23 08:53, Panu Matilainen: > --exclude became a positional option in tar 1.29, breaking the > test app filtering in "make install", causing .map files and all test > apps to get installed in bindir. Adjust the tar arguments accordingly, > this is compatible with older versions too since they do not care about > the order. > > Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1337864 > > Signed-off-by: Panu Matilainen Fixes: 6b62a72a70d0 ("mk: install a standard cutomizable tree") Applied, thanks