From patchwork Fri Dec 18 19:01:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 559052 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id ABD8C1402A9 for ; Sat, 19 Dec 2015 06:01:57 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=pcbxDrvi; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3BFCC93059; Fri, 18 Dec 2015 19:01:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vIGtsRkFUGZl; Fri, 18 Dec 2015 19:01:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 2123492FFF; Fri, 18 Dec 2015 19:01:54 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BF0791C0E4D for ; Fri, 18 Dec 2015 19:01:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id BB7D292FFF for ; Fri, 18 Dec 2015 19:01:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s7W5ZDifmTVK for ; Fri, 18 Dec 2015 19:01:50 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by whitealder.osuosl.org (Postfix) with ESMTPS id 484C392FF4 for ; Fri, 18 Dec 2015 19:01:50 +0000 (UTC) Received: by mail-wm0-f46.google.com with SMTP id l126so77601372wml.1 for ; Fri, 18 Dec 2015 11:01:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id; bh=FzQNTLZH6cHsws+aeryOJbJae8T/h+utAJj6CkwjA94=; b=pcbxDrvi1wKi8+7RM8pz438pF/F+Dd58xEXUtOYalULbEphtmDUiNdANqzwVRTyV5z XXLt8vpqVBralYFO2vSdMOwz3Nmcs2lZG+hWcsvui7csyj6/Ksc3tl8r3B+qUDOf/SvN MdrKSC4pyOMmSkgQkPDxcBbJF11RNRWXcr7HLVy9Iq+4KOcgP6Tf9xEtZ/9WVoWwKSaI oaKu9pOiBIrRZQiUOynjdbyLkREg9VTUb006BRcUOexIk0GGX2QIFN3xPa7T+TylLLGd DGBqky1KRaEUlPK4dwPrJyVKNsP2Ua3s4R/l1uUWTsr7s/N4Rio0NZMD1Hf0GCzdbtwu C6Kw== X-Received: by 10.194.87.39 with SMTP id u7mr5784181wjz.11.1450465308954; Fri, 18 Dec 2015 11:01:48 -0800 (PST) Received: from gourin.bzh.lan (ns304657.ip-46-105-103.eu. [46.105.103.66]) by smtp.gmail.com with ESMTPSA id r74sm7866150wmb.2.2015.12.18.11.01.47 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 18 Dec 2015 11:01:48 -0800 (PST) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Fri, 18 Dec 2015 20:01:44 +0100 Message-Id: <1450465304-679-1-git-send-email-yann.morin.1998@free.fr> X-Mailer: git-send-email 1.9.1 Cc: Thomas Petazzoni , "Yann E. MORIN" , Peter Korsgaard Subject: [Buildroot] [PATCH] package/netbsd-queue: fix circular dependency 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" netbsd-queue is a dependency of musl, so is part of the toolchain. As such, it should not depend on the toolchain... Fixes make circular dependencies such as: make[1]: Circular toolchain-all-source <- toolchain-external-all-source dependency dropped. Signed-off-by: "Yann E. MORIN" Cc: Sergio Prado Cc: Thomas Petazzoni Cc: Peter Korsgaard --- package/netbsd-queue/netbsd-queue.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/netbsd-queue/netbsd-queue.mk b/package/netbsd-queue/netbsd-queue.mk index 0f486fa..5fd926b 100644 --- a/package/netbsd-queue/netbsd-queue.mk +++ b/package/netbsd-queue/netbsd-queue.mk @@ -9,6 +9,7 @@ NETBSD_QUEUE_SITE = http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/sys NETBSD_QUEUE_SOURCE = queue.h?rev=$(NETBSD_QUEUE_VERSION) NETBSD_QUEUE_LICENSE = BSD-3c +NETBSD_QUEUE_ADD_TOOLCHAIN_DEPENDENCY = NO NETBSD_QUEUE_INSTALL_STAGING = YES define NETBSD_QUEUE_EXTRACT_CMDS