From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.visioncatalog.de ([217.6.246.34] helo=root.phytec.de) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1S5wfV-0001ug-2e for ptxdist@pengutronix.de; Fri, 09 Mar 2012 11:03:26 +0100 Received: from idefix.phytec.de (idefix.phytec.de [172.16.0.10]) by root.phytec.de (Postfix) with ESMTP id 68E56A30A2 for ; Thu, 8 Mar 2012 10:57:43 +0100 (CET) From: Jan Weitzel Date: Fri, 9 Mar 2012 11:03:23 +0100 Message-Id: <1331287403-9659-1-git-send-email-j.weitzel@phytec.de> In-Reply-To: <1331287364.3653.19.camel@lws-weitzel> References: <1331287364.3653.19.camel@lws-weitzel> Subject: [ptxdist] [PATCH] barebox_mlo: fix resolving BAREBOX_MLO_ Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de BAREBOX_MLO_MD5 and BAREBOX_MLO_URL are not correct resolved. Fix it by using "=" instead of ":=" Signed-off-by: Jan Weitzel --- rules/barebox_mlo.make | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rules/barebox_mlo.make b/rules/barebox_mlo.make index 018f273..fd860b6 100644 --- a/rules/barebox_mlo.make +++ b/rules/barebox_mlo.make @@ -16,9 +16,9 @@ PACKAGES-$(PTXCONF_BAREBOX_MLO) += barebox_mlo # # Paths and names # -BAREBOX_MLO_VERSION := $(call remove_quotes,$(PTXCONF_BAREBOX_MLO_VERSION)) -BAREBOX_MLO_MD5 := $(call remove_quotes,$(PTXCONF_BAREBOX_MLO_MD5)) -BAREBOX_MLO := barebox-$(BAREBOX_MLO_VERSION) +BAREBOX_MLO_VERSION = $(call remove_quotes,$(PTXCONF_BAREBOX_MLO_VERSION)) +BAREBOX_MLO_MD5 = $(call remove_quotes,$(PTXCONF_BAREBOX_MLO_MD5)) +BAREBOX_MLO = barebox-$(BAREBOX_MLO_VERSION) BAREBOX_MLO_URL = http://www.barebox.org/download/$(BAREBOX_MLO).$(BAREBOX_SUFFIX) BAREBOX_MLO_DIR := $(BUILDDIR)/barebox_mlo-$(BAREBOX_MLO_VERSION) BAREBOX_MLO_SOURCE = $(SRCDIR)/$(BAREBOX_MLO).$(BAREBOX_SUFFIX) -- 1.7.0.4 -- ptxdist mailing list ptxdist@pengutronix.de