diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-04-29 10:09:41 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-04-29 10:09:41 +0200 |
commit | 9a4ff604e87be0628ddd8f17bd45a2cd99a4bc9b (patch) | |
tree | 5effe7bbe54eb7de5d19381b2c583284954b58b8 /extra/qemu | |
parent | 2fd985c4a06f6fd2d323830e0adf9462ee6e26f0 (diff) | |
download | packages-9a4ff604e87be0628ddd8f17bd45a2cd99a4bc9b.tar.xz |
extra/qemu: another libdrm workaround on i486
Diffstat (limited to 'extra/qemu')
-rw-r--r-- | extra/qemu/PKGBUILD | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD index 0ccb8f88..f810d88d 100644 --- a/extra/qemu/PKGBUILD +++ b/extra/qemu/PKGBUILD @@ -13,3 +13,8 @@ eval "$( s@rm qemu/block-{iscsi,rbd,gluster}.so@rm qemu/block-{iscsi,gluster}.so@ ' )" + +# libdrm missing on i486? +if [ "$CARCH" = 'i486' ]; then + depends+=(libdrm) +fi |