From patchwork Sat Jul 2 22:21:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Floret X-Patchwork-Id: 643617 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rhntb4fYzz9s5M for ; Sun, 3 Jul 2016 08:26:15 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id E62F088712; Sat, 2 Jul 2016 22:26:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id j7ZFOOlIqclL; Sat, 2 Jul 2016 22:26:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7BF8088C8D; Sat, 2 Jul 2016 22:26:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id D28B41C0D28 for ; Sat, 2 Jul 2016 22:23:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CC9A725BF4 for ; Sat, 2 Jul 2016 22:23:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q3n5aRgsZfwG for ; Sat, 2 Jul 2016 22:23:53 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by silver.osuosl.org (Postfix) with ESMTP id 6295E25ACF for ; Sat, 2 Jul 2016 22:23:53 +0000 (UTC) Received: from 6wind.com (unknown [10.16.0.185]) by proxy.6wind.com (Postfix) with SMTP id 15523252F6; Sun, 3 Jul 2016 00:23:52 +0200 (CEST) Received: by 6wind.com (sSMTP sendmail emulation); Sun, 03 Jul 2016 00:23:52 +0200 From: Julien Floret To: buildroot@buildroot.org Date: Sun, 3 Jul 2016 00:21:38 +0200 Message-Id: <1467498098-23731-70-git-send-email-julien.floret@6wind.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1467498098-23731-1-git-send-email-julien.floret@6wind.com> References: <1467498098-23731-1-git-send-email-julien.floret@6wind.com> Cc: thomas.petazzoni@free-electrons.com Subject: [Buildroot] [PATCH 69/69] tar: remove empty host dependencies definition X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Note that host-tar dependencies were broken with automatic derivation of host dependencies: host-tar could depend (or not) on host-attr (and even on non-existing host-acl!), depending on BR2_PACKAGE_BUSYBOX. Now, host-tar has no dependency. Signed-off-by: Julien Floret --- package/tar/tar.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/package/tar/tar.mk b/package/tar/tar.mk index 767c02f9f990..26f113a4d2ab 100644 --- a/package/tar/tar.mk +++ b/package/tar/tar.mk @@ -16,7 +16,6 @@ TAR_LICENSE_FILES = COPYING # Prefer full-blown tar over buybox's version ifeq ($(BR2_PACKAGE_BUSYBOX),y) TAR_DEPENDENCIES += busybox -HOST_TAR_DEPENDENCIES = endif ifeq ($(BR2_PACKAGE_ACL),y)