From 516246ddf2d7c2569ee6c0ffa4cfc80ff4ecc203 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Wed, 9 Oct 2013 00:09:48 +0200 Subject: [PATCH] package/weston: fix variable name The weston package uses the $(WAYLAND_VERSION) variable instead of $(WESTON_VERSION). This went unnoticed for now, as we were using the same version for wayland and weston. But that's not always the case, since we have, for example: wayland-1.2.1 and weston-1.2.2, and no wayland-1.2.2. Fix this by using the correct variable. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/weston/weston.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/weston/weston.mk b/package/weston/weston.mk index 6f7703ed4a..5d2c829b3a 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -6,7 +6,7 @@ WESTON_VERSION = 1.1.0 WESTON_SITE = http://wayland.freedesktop.org/releases/ -WESTON_SOURCE = weston-$(WAYLAND_VERSION).tar.xz +WESTON_SOURCE = weston-$(WESTON_VERSION).tar.xz WESTON_LICENSE = MIT WESTON_LICENSE_FILES = COPYING -- 2.30.2