diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-08-02 22:56:41 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-04 10:38:26 +0100 |
commit | da75a0e1c1ecf7748c3078c2edb7fc106aeb2f42 (patch) | |
tree | ee737035e63fdc1653d983c8105661836c769b13 /meta/recipes-graphics | |
parent | 3bac23a5fe9ee2e93b9db36e3bee08ce53287296 (diff) | |
download | poky-da75a0e1c1ecf7748c3078c2edb7fc106aeb2f42.tar.gz |
mesa: Define a fallback for DRIDRIVERS
Some machines may not define this variable, in such cases bitbake fails
to parse
run.do_configure.3766843: line 164: -Ddri-drivers=${@strip_comma('${DRIDRIVERS}')}: bad substitution
(From OE-Core rev: b68790713fee4de4fa81762526b941ba76b66866)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_21.1.5.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_21.1.5.bb b/meta/recipes-graphics/mesa/mesa_21.1.5.bb index 3f62990b29..951fe8333b 100644 --- a/meta/recipes-graphics/mesa/mesa_21.1.5.bb +++ b/meta/recipes-graphics/mesa/mesa_21.1.5.bb | |||
@@ -1,5 +1,4 @@ | |||
1 | require ${BPN}.inc | 1 | require ${BPN}.inc |
2 | 2 | DRIDRIVERS ??= "" | |
3 | DRIDRIVERS:append:x86:class-target = ",r100,r200,nouveau,i965" | 3 | DRIDRIVERS:append:x86:class-target = ",r100,r200,nouveau,i965" |
4 | DRIDRIVERS:append:x86-64:class-target = ",r100,r200,nouveau,i965" | 4 | DRIDRIVERS:append:x86-64:class-target = ",r100,r200,nouveau,i965" |
5 | |||