From patchwork Mon Apr 17 19:54:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 751491 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3w6Js419Rvz9s2x for ; Tue, 18 Apr 2017 05:55:20 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2168C3095C; Mon, 17 Apr 2017 19:55:15 +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 MNx4+ZLF7riQ; Mon, 17 Apr 2017 19:55:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4C68A30938; Mon, 17 Apr 2017 19:54:54 +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 1FE811BFF0C for ; Mon, 17 Apr 2017 19:54:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 882AF30936 for ; Mon, 17 Apr 2017 19:54:43 +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 Tcb8jKQ7Ds79 for ; Mon, 17 Apr 2017 19:54:41 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by silver.osuosl.org (Postfix) with ESMTPS id 63D643047D for ; Mon, 17 Apr 2017 19:54:41 +0000 (UTC) Received: from fwd41.aul.t-online.de (fwd41.aul.t-online.de [172.20.27.139]) by mailout04.t-online.de (Postfix) with SMTP id 37FFD41A31B2 for ; Mon, 17 Apr 2017 21:54:39 +0200 (CEST) Received: from fli4l.lan.fli4l (ZGo+qEZYZhPbct0pIKjZ7gH1fpTgYLaNPN191TrBydX2R2Y1Y0RdAU6WL0HMp9pQpw@[79.222.106.186]) by fwd41.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1d0CjM-25X8O80; Mon, 17 Apr 2017 21:54:36 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:34688 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1d0CjL-00062C-VY for buildroot@buildroot.org; Mon, 17 Apr 2017 21:54:36 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 17 Apr 2017 21:54:04 +0200 Message-Id: <20170417195433.26672-6-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170417195433.26672-1-bernd.kuhls@t-online.de> References: <20170417195433.26672-1-bernd.kuhls@t-online.de> X-ID: ZGo+qEZYZhPbct0pIKjZ7gH1fpTgYLaNPN191TrBydX2R2Y1Y0RdAU6WL0HMp9pQpw X-TOI-MSGID: fbce6db4-a874-45cf-b478-dc0170d2a522 Subject: [Buildroot] [PATCH v5 05/34] package/xmlstarlet: add host variant 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" Needed for the Kodi skin package to control the default skin setup. Signed-off-by: Bernd Kuhls Acked-by: "Yann E. MORIN" --- package/xmlstarlet/xmlstarlet.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/xmlstarlet/xmlstarlet.mk b/package/xmlstarlet/xmlstarlet.mk index 61d38f29f..091c371e8 100644 --- a/package/xmlstarlet/xmlstarlet.mk +++ b/package/xmlstarlet/xmlstarlet.mk @@ -24,4 +24,7 @@ else XMLSTARLET_CONF_OPTS += --disable-static-libs endif +HOST_XMLSTARLET_DEPENDENCIES += host-libxml2 host-libxslt + $(eval $(autotools-package)) +$(eval $(host-autotools-package))