From patchwork Tue Dec 9 14:34:06 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Oudinet X-Patchwork-Id: 419083 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id A76841400F1 for ; Wed, 10 Dec 2014 01:35:14 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BED4995E4B; Tue, 9 Dec 2014 14:35:13 +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 55idWmRr3nxZ; Tue, 9 Dec 2014 14:35:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 0ABE295E6B; Tue, 9 Dec 2014 14:35:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 229EB1C2826 for ; Tue, 9 Dec 2014 14:35:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1BD0D33C9D for ; Tue, 9 Dec 2014 14:35:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WqeCQ+U2sYe5 for ; Tue, 9 Dec 2014 14:35:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by silver.osuosl.org (Postfix) with ESMTPS id A569F3372A for ; Tue, 9 Dec 2014 14:35:09 +0000 (UTC) Received: by mail-wg0-f48.google.com with SMTP id y19so997984wgg.7 for ; Tue, 09 Dec 2014 06:35:08 -0800 (PST) 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=QsW2r7Mp6+azNfNrlKz44ezjkcohSlyAlgocipt7YQo=; b=xTDqwaoiWG9QY/qbdLiuGiESIe21npAcXlL872YJrsFfaAPboKpRmHvOx57zR8Makg lUydHqAFwbOWGvT7B9VKxoupjj0SAga1NyU73hbkxMSCdHlbYsB7GTMaHAYwMOR96a63 TiZ3P2AINblZ/yeKTHNFGranreIXlLqlhZ6C3nqj01SMa4mJu2Y1ax8ZTVr1GldSxbRY s3mwnWgbqurq/rVbKxCzwrcNA662d9Lx7wkXhvlmKbN8HMsWE2cIQCyhVLn8s1YJYrAf 2CrPXAiGWluhl4bIOw2DCnGVQEsHdLSiR29L474EUgucE8Uvo/dbgAHFSZYylxSoXax0 tu/Q== X-Received: by 10.180.126.99 with SMTP id mx3mr4958249wib.66.1418135708251; Tue, 09 Dec 2014 06:35:08 -0800 (PST) Received: from localhost.localdomain ([193.51.194.209]) by mx.google.com with ESMTPSA id d16sm2480265wib.4.2014.12.09.06.35.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 09 Dec 2014 06:35:06 -0800 (PST) From: Johan Oudinet To: buildroot@buildroot.org Date: Tue, 9 Dec 2014 15:34:06 +0100 Message-Id: <1418135662-773-2-git-send-email-johan.oudinet@gmail.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1418135662-773-1-git-send-email-johan.oudinet@gmail.com> References: <1418135662-773-1-git-send-email-johan.oudinet@gmail.com> Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH v4 01/17] package/erlang: export EI_VSN so other packages can use it 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" From: "Yann E. MORIN" Packages that depend on Erlang may need the Erlang Interface Version (aka EI_VSN), so just export it. We do export a static value instead of looking in the file, to avoid spawning a shell every time the variable is dereferenced. Signed-off-by: "Yann E. MORIN" Cc: Johan Oudinet Signed-off-by: Johan Oudinet --- package/erlang/erlang.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/erlang/erlang.mk b/package/erlang/erlang.mk index ef0e0a2..54e5a56 100644 --- a/package/erlang/erlang.mk +++ b/package/erlang/erlang.mk @@ -4,6 +4,7 @@ # ################################################################################ +# See note below when updating Erlang ERLANG_VERSION = 17.3 ERLANG_SITE = http://www.erlang.org/download ERLANG_SOURCE = otp_src_$(ERLANG_VERSION).tar.gz @@ -13,6 +14,10 @@ ERLANG_LICENSE = EPL ERLANG_LICENSE_FILES = EPLICENCE ERLANG_INSTALL_STAGING = YES +# Whenever updating Erlang, this value should be updated as well, to the +# value of EI_VSN in the file lib/erl_interface/vsn.mk +ERLANG_EI_VSN = 3.7.18 + # The configure checks for these functions fail incorrectly ERLANG_CONF_ENV = ac_cv_func_isnan=yes ac_cv_func_isinf=yes