diff options
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc index 7331cf64dd..5d5443c7db 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | |||
@@ -13,7 +13,7 @@ PROVIDES = "virtual/xserver-xf86" | |||
13 | PROVIDES += "virtual/xserver" | 13 | PROVIDES += "virtual/xserver" |
14 | 14 | ||
15 | PE = "2" | 15 | PE = "2" |
16 | INC_PR = "r7" | 16 | INC_PR = "r8" |
17 | 17 | ||
18 | XORG_PN = "xorg-server" | 18 | XORG_PN = "xorg-server" |
19 | SRC_URI = "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${PV}.tar.bz2" | 19 | SRC_URI = "${XORG_MIRROR}/individual/xserver/${XORG_PN}-${PV}.tar.bz2" |
@@ -151,7 +151,8 @@ python populate_packages_prepend() { | |||
151 | p = subprocess.Popen(args="pkg-config --variable=%s xorg-server" % abis[name], | 151 | p = subprocess.Popen(args="pkg-config --variable=%s xorg-server" % abis[name], |
152 | shell=True, env=newenv, stdout=subprocess.PIPE) | 152 | shell=True, env=newenv, stdout=subprocess.PIPE) |
153 | output = p.communicate()[0] | 153 | output = p.communicate()[0] |
154 | return "xorg-abi-%s-%s" % (name, output.split(".")[0]) | 154 | mlprefix = d.getVar('MLPREFIX', True) or '' |
155 | return "%sxorg-abi-%s-%s" % (mlprefix, name, output.split(".")[0]) | ||
155 | 156 | ||
156 | pn = d.getVar("PN", True) | 157 | pn = d.getVar("PN", True) |
157 | d.appendVar("RPROVIDES_" + pn, " " + get_abi("input")) | 158 | d.appendVar("RPROVIDES_" + pn, " " + get_abi("input")) |