[Buildroot] [git commit] package/weston: fix variable name

Peter Korsgaard peter at korsgaard.com
Wed Oct 9 21:06:48 UTC 2013


commit: http://git.buildroot.net/buildroot/commit/?id=516246ddf2d7c2569ee6c0ffa4cfc80ff4ecc203
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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" <yann.morin.1998 at free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/weston/weston.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/weston/weston.mk b/package/weston/weston.mk
index 6f7703e..5d2c829 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
 


More information about the buildroot mailing list