From patchwork Sat Jul 2 22:21:09 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Floret X-Patchwork-Id: 643591 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 3rhnsV6GYWz9t0l for ; Sun, 3 Jul 2016 08:25:18 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D408D88331; Sat, 2 Jul 2016 22:25:15 +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 4NTJNaWiC9CD; Sat, 2 Jul 2016 22:25:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7349787883; Sat, 2 Jul 2016 22:25:13 +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 803391C0D28 for ; Sat, 2 Jul 2016 22:23:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 65A148A81D for ; Sat, 2 Jul 2016 22:23:31 +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 bl3vZE9szarl for ; Sat, 2 Jul 2016 22:23:28 +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 whitealder.osuosl.org (Postfix) with ESMTP id 48372897F1 for ; Sat, 2 Jul 2016 22:23:22 +0000 (UTC) Received: from 6wind.com (unknown [10.16.0.185]) by proxy.6wind.com (Postfix) with SMTP id 9857524B67; Sun, 3 Jul 2016 00:23:20 +0200 (CEST) Received: by 6wind.com (sSMTP sendmail emulation); Sun, 03 Jul 2016 00:23:21 +0200 From: Julien Floret To: buildroot@buildroot.org Date: Sun, 3 Jul 2016 00:21:09 +0200 Message-Id: <1467498098-23731-41-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 40/69] xapp_xcursorgen: add explicit dependencies for 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" Signed-off-by: Julien Floret --- package/x11r7/xapp_xcursorgen/xapp_xcursorgen.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/x11r7/xapp_xcursorgen/xapp_xcursorgen.mk b/package/x11r7/xapp_xcursorgen/xapp_xcursorgen.mk index f9ca39d2e71d..4bee26b5dcda 100644 --- a/package/x11r7/xapp_xcursorgen/xapp_xcursorgen.mk +++ b/package/x11r7/xapp_xcursorgen/xapp_xcursorgen.mk @@ -10,6 +10,8 @@ XAPP_XCURSORGEN_SITE = http://xorg.freedesktop.org/releases/individual/app XAPP_XCURSORGEN_LICENSE = MIT XAPP_XCURSORGEN_LICENSE_FILES = COPYING XAPP_XCURSORGEN_DEPENDENCIES = libpng xlib_libX11 xlib_libXcursor +HOST_XAPP_XCURSORGEN_DEPENDENCIES = \ + host-libpng host-xlib_libX11 host-xlib_libXcursor $(eval $(autotools-package)) $(eval $(host-autotools-package))