From patchwork Sun Oct 21 15:27:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Diorcet X-Patchwork-Id: 193006 X-Patchwork-Delegate: esben@haabendal.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 [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id E55322C0080 for ; Mon, 22 Oct 2012 02:27:54 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id C00113FC31 for ; Sun, 21 Oct 2012 17:27:52 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by hugin.dotsrc.org (Postfix) with ESMTPS id 5329D3FBAE for ; Sun, 21 Oct 2012 17:27:50 +0200 (CEST) Received: by mail-wg0-f47.google.com with SMTP id ge7so1150102wgb.16 for ; Sun, 21 Oct 2012 08:27:49 -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:x-mailer:in-reply-to:references; bh=d5dqHF4DbUZAbLepgyqsc+ro9iWrjIueGokNyfOwiFk=; b=g3Rddd+GdWN64ugJEu9tw+dXdDuaZOXYK0bat2bEQs+s9RvdZxawQHD1OYxAzlOO6x 0UoXBIFlwFZ3UujXbFKkY4gy4N8HiHlsZv5ogbTSs1UEOgHU79d5YZz8CgXWcOC/Xe8y 4pRkLAQk9Rs5xnCp/bl6hxoIwwiVDdqaKFYWF0EA6N4L8ilFuaLNjYuJ1caMcDCueXaf 4XOYE+QvlyzQRI0AJUi8NjYuW57P5siFCiZiJ5/pC61I/9s90d6wM6ZO8VgFcqUncYZv ewHS/mrc37wWek6If9IBtC9hi56B71yWaBM1CbD590Oo0o+3iTTDk4DmtC31A9aXmkaH Jajw== Received: by 10.216.141.148 with SMTP id g20mr3742957wej.106.1350833269570; Sun, 21 Oct 2012 08:27:49 -0700 (PDT) Received: from localhost.localdomain (dom38-1-82-236-154-183.fbx.proxad.net. [82.236.154.183]) by mx.google.com with ESMTPS id gg4sm16470282wib.6.2012.10.21.08.27.48 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 21 Oct 2012 08:27:48 -0700 (PDT) From: Yann Diorcet To: dev@oe-lite.org Subject: [PATCH 01/18] Remove UNAME-RELEASE from target name for darwin Date: Sun, 21 Oct 2012 17:27:24 +0200 Message-Id: <1350833261-8401-1-git-send-email-diorcet.yann@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: Cc: Yann Diorcet 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 From: Yann Diorcet If not removed the OS string may contains a dot and produce error (added to the fact that the overriding will be depending on darwin release). ex TARGET_OS_darwin12.2 --- scripts/config.guess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.guess b/scripts/config.guess index e792aac..31b8923 100755 --- a/scripts/config.guess +++ b/scripts/config.guess @@ -1210,7 +1210,7 @@ EOF fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo ${UNAME_PROCESSOR}-apple-darwin exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p`