From patchwork Wed Aug 6 19:18:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Diorcet X-Patchwork-Id: 377379 X-Patchwork-Delegate: kiho@prevas.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 3F7CC14009C for ; Thu, 7 Aug 2014 05:18:47 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id EDC323F9B1 for ; Wed, 6 Aug 2014 21:18:45 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by hugin.dotsrc.org (Postfix) with ESMTPS id E67123FD8F for ; Wed, 6 Aug 2014 21:18:42 +0200 (CEST) Received: by mail-wi0-f182.google.com with SMTP id d1so3816344wiv.15 for ; Wed, 06 Aug 2014 12:18:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=pyIGZCcbQ1p5KhYaaFmjcAkPoZthHn7jgfXgF0Qd5BE=; b=PyR0ewwjGSIa72drb1wwkcpWC99KMyhwsdMNu42zIFriCkQbXnpTJ1OV4ZJznqTfFJ 8DoCRc7gk8Yo8+9ZHmvBhafiWoG0izxY0HqFz/6zBO+eur/MUM98lowMlrZj5eiELxC+ Cs56KXuJ77JgdXLtV4wXDsQ43xtR9HWEZW1mpIkq0nlEhH9lbDg8wRgw5ysGJj3Vk6s3 SEE3K6Jal8LMyT/j54TSsaRe8iyDOrrj8CDqgtNLbBjqilwohDJQUF7UnOWm0/VsGiTt jQDBgTmOS40YZrfRKUYoEp2osSCIu+YoFTIiidXSeUxCNNz0uh+DRlXXm1Rn0MLPTYgr fy2g== X-Received: by 10.180.79.202 with SMTP id l10mr51397560wix.18.1407352722376; Wed, 06 Aug 2014 12:18:42 -0700 (PDT) Received: from localhost.localdomain (mut38-h01-31-33-249-220.dsl.sta.abo.bbox.fr. [31.33.249.220]) by mx.google.com with ESMTPSA id b9sm21033538wic.23.2014.08.06.12.18.41 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 06 Aug 2014 12:18:41 -0700 (PDT) From: Yann Diorcet To: dev@oe-lite.org Subject: [PATCH 17/18] libelf: Replace _OS_ by _KERNEL_ Date: Wed, 6 Aug 2014 21:18:03 +0200 Message-Id: <1407352684-7837-17-git-send-email-diorcet.yann@gmail.com> X-Mailer: git-send-email 2.0.1 In-Reply-To: <1407352684-7837-1-git-send-email-diorcet.yann@gmail.com> References: <1407352684-7837-1-git-send-email-diorcet.yann@gmail.com> X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org --- recipes/libelf/libelf_0.8.13.oe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/libelf/libelf_0.8.13.oe b/recipes/libelf/libelf_0.8.13.oe index 248f051..2b97067 100644 --- a/recipes/libelf/libelf_0.8.13.oe +++ b/recipes/libelf/libelf_0.8.13.oe @@ -12,10 +12,10 @@ SRC_URI:>HOST_LIBC_mingw += "file://mingw-configure-crlf.patch" EXTRA_OEMAKE_INSTALL += "instroot=${D}" -EXTRA_OECONF:>HOST_OS_darwin = "--disable-compat" +EXTRA_OECONF:>HOST_KERNEL_darwin = "--disable-compat" FILES_${PN}-locale += "${libdir}/locale" # OE-lite/core now also provides libelf, so let's use that, except for darwin DEFAULT_PREFERENCE = "-1" -DEFAULT_PREFERENCE:HOST_OS_darwin = "0" +DEFAULT_PREFERENCE:HOST_KERNEL_darwin = "0"