From patchwork Sun Oct 21 15:27:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [01/18] Remove UNAME-RELEASE from target name for darwin Date: Sun, 21 Oct 2012 05:27:24 -0000 From: Yann Diorcet X-Patchwork-Id: 193006 Message-Id: <1350833261-8401-1-git-send-email-diorcet.yann@gmail.com> To: dev@oe-lite.org Cc: Yann Diorcet 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`