diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-04-19 23:17:01 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-05-02 21:17:02 +0200 |
commit | 81d9a144af919d23d8c9d8796c168df193f3b0b4 (patch) | |
tree | 4839f8a8e28baae891ffe7cda632a8bde4bcc3c5 | |
parent | 7f1f3f0ccf6c739ce60eb25687c08c8e25cb7921 (diff) |
task-x11: add variable for common files provider selection
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes/tasks/task-x11.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/tasks/task-x11.bb b/recipes/tasks/task-x11.bb index db45ab9380..5eeb8bafbf 100644 --- a/recipes/tasks/task-x11.bb +++ b/recipes/tasks/task-x11.bb @@ -2,7 +2,7 @@ DESCRIPTION = "The X Window System -- install this task to get a client/server b SECTION = "x11/server" LICENSE = "MIT" PV = "1.0" -PR = "r3" +PR = "r4" # WORK IN PROGRESS @@ -21,6 +21,8 @@ RRECOMMENDS_${PN} = "\ # Some machines don't set a *runtime* provider for X, so default to Xfbdev here # virtual/xserver won't work, since the kdrive recipes will build multiple xserver packages XSERVER ?= "xserver-kdrive-fbdev" +XSERVER_COMMON ?= "xserver-kdrive-common" +XSERVER_COMMON_shr = "xserver-common" # This is also the reason why we have to make this package machine specific :/ PACKAGE_ARCH_${PN}-server = "${MACHINE_ARCH}" @@ -30,7 +32,7 @@ RDEPENDS_${PN}-server = "\ " RDEPENDS_${PN}-utils = "\ - xserver-kdrive-common \ + ${XSERVER_COMMON} \ xserver-nodm-init \ xauth \ xhost \ |