From patchwork Sun Jul 10 10:09:14 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 646735 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rnP8r6w4Pz9sD5 for ; Sun, 10 Jul 2016 20:09:32 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A03B38A51E; Sun, 10 Jul 2016 10:09:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8cgLJPyMI3Ak; Sun, 10 Jul 2016 10:09:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 2683489EA3; Sun, 10 Jul 2016 10:09:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 8A8521C1027 for ; Sun, 10 Jul 2016 10:09:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 756988A4DA for ; Sun, 10 Jul 2016 10:09:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P8u+VAiKgbj5 for ; Sun, 10 Jul 2016 10:09:23 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by hemlock.osuosl.org (Postfix) with ESMTPS id 9533889E5A for ; Sun, 10 Jul 2016 10:09:23 +0000 (UTC) Received: from fwd34.aul.t-online.de (fwd34.aul.t-online.de [172.20.26.145]) by mailout01.t-online.de (Postfix) with SMTP id 90A814212ACE for ; Sun, 10 Jul 2016 12:09:21 +0200 (CEST) Received: from fli4l.lan.fli4l (Z1ZxGYZBghMSLy-3yxxWRp++eqNVsQfWTl6+v99ke5yRgyNFsQMlwitHL5jhxG9gAM@[84.178.228.228]) by fwd34.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1bMBfp-4BIqMy0; Sun, 10 Jul 2016 12:09:17 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:55344 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1bMBfo-0004QV-P6; Sun, 10 Jul 2016 12:09:16 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 10 Jul 2016 12:09:14 +0200 Message-Id: <1468145355-11597-2-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1468145355-11597-1-git-send-email-bernd.kuhls@t-online.de> References: <1468145355-11597-1-git-send-email-bernd.kuhls@t-online.de> X-ID: Z1ZxGYZBghMSLy-3yxxWRp++eqNVsQfWTl6+v99ke5yRgyNFsQMlwitHL5jhxG9gAM X-TOI-MSGID: a6ddf132-d066-4bec-b43c-fafd01955975 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 2/3] package/mesa3d: Fix udev dependency check 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" Sorry for the typo ;) Signed-off-by: Bernd Kuhls --- package/mesa3d/mesa3d.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk index 9cce0ef..dcd43d5 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -38,7 +38,7 @@ MESA3D_DEPENDENCIES += libgcrypt MESA3D_CONF_OPTS += --with-sha1=libgcrypt endif -ifeq ($(BR2_PACKAGE_HAS_LIBUDEV),y) +ifeq ($(BR2_PACKAGE_HAS_UDEV),y) MESA3D_DEPENDENCIES += udev MESA3D_CONF_OPTS += --disable-sysfs else