From patchwork Mon Jan 12 09:32:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Oudinet X-Patchwork-Id: 427612 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 4C617140192 for ; Mon, 12 Jan 2015 20:33:07 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 936AB3163B; Mon, 12 Jan 2015 09:33:06 +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 jsovUHz5sTin; Mon, 12 Jan 2015 09:33:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 082EA31310; Mon, 12 Jan 2015 09:33:05 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 568191C22EC for ; Mon, 12 Jan 2015 09:33:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5111D8A486 for ; Mon, 12 Jan 2015 09:33:03 +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 H6m+awyrMRG2 for ; Mon, 12 Jan 2015 09:33:02 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f44.google.com (mail-wg0-f44.google.com [74.125.82.44]) by hemlock.osuosl.org (Postfix) with ESMTPS id 63BAA8A458 for ; Mon, 12 Jan 2015 09:33:02 +0000 (UTC) Received: by mail-wg0-f44.google.com with SMTP id y19so2007456wgg.3 for ; Mon, 12 Jan 2015 01:33:01 -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=czRBnKnNyPyMwTsrEh4bPYpAiecHzZuKYXR5hPPxLZY=; b=gyLrWNrN565UJv0FAZjJGGLm2mvMyab0WnpkD0q/YaT9JSWHO3uRvjBwpYs7mgi3JF khKM5lJACpmv1M8NeAVe/3EbVZsrXkYE0jyJMw3oiNHVcwIg3O/SstK2EJB0FZCE3DAp 8FnLi86T6W/aY0vi1NqVkJ3yCo3DOB/V5POgX9HNcCztT7s4pDYAAibRQ3KI2D/6Nlmv diRuU2evCHz6DcHIGevHVpICfnTb69ejJU7YIc4VT4YsvQzbGV18yIRkwaJmhBSKZO74 kBfZ7d086+jKFONDSgND+aT7u6pfjD88yzkMf3atgCja3BMRim6Kus0Cjr+Ue4hk8E5k RNYg== X-Received: by 10.180.103.33 with SMTP id ft1mr28759479wib.19.1421055180922; Mon, 12 Jan 2015 01:33:00 -0800 (PST) Received: from localhost.localdomain ([193.51.194.209]) by mx.google.com with ESMTPSA id fm10sm9431343wib.7.2015.01.12.01.32.59 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 12 Jan 2015 01:33:00 -0800 (PST) From: Johan Oudinet To: buildroot@buildroot.org Date: Mon, 12 Jan 2015 10:32:05 +0100 Message-Id: <1421055140-5092-2-git-send-email-johan.oudinet@gmail.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1421055140-5092-1-git-send-email-johan.oudinet@gmail.com> References: <1421055140-5092-1-git-send-email-johan.oudinet@gmail.com> Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH v6 01/16] 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" [johan.oudinet@gmail.com: update EI_VSN since the erlang update] Signed-off-by: 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 81ac436..0c76531 100644 --- a/package/erlang/erlang.mk +++ b/package/erlang/erlang.mk @@ -4,6 +4,7 @@ # ################################################################################ +# See note below when updating Erlang ERLANG_VERSION = 17.4 ERLANG_SITE = http://www.erlang.org/download ERLANG_SOURCE = otp_src_$(ERLANG_VERSION).tar.gz @@ -16,6 +17,10 @@ ERLANG_INSTALL_STAGING = YES # Touching erts/configure.in ERLANG_AUTORECONF = 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.20 + # The configure checks for these functions fail incorrectly ERLANG_CONF_ENV = ac_cv_func_isnan=yes ac_cv_func_isinf=yes