summaryrefslogtreecommitdiffstats
path: root/core/modules/xorg/module.build
diff options
context:
space:
mode:
authorSimon Rettberg2022-03-10 16:28:03 +0100
committerSimon Rettberg2022-03-10 16:28:03 +0100
commitdbec3496a74df9ef8aea18b1c2c1202611513582 (patch)
treedd32871be84b42807451ed5e45ad672d60f0f809 /core/modules/xorg/module.build
parent[splashtool] Fix reading size from ppm with comments (diff)
downloadmltk-dbec3496a74df9ef8aea18b1c2c1202611513582.tar.gz
mltk-dbec3496a74df9ef8aea18b1c2c1202611513582.tar.xz
mltk-dbec3496a74df9ef8aea18b1c2c1202611513582.zip
[xorg] Install libgl1-mesa-dri 22.0-rc3 to avoid glitches
Diffstat (limited to 'core/modules/xorg/module.build')
-rw-r--r--core/modules/xorg/module.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/modules/xorg/module.build b/core/modules/xorg/module.build
index 3e730932..e720451a 100644
--- a/core/modules/xorg/module.build
+++ b/core/modules/xorg/module.build
@@ -44,6 +44,13 @@ build() {
find . -type f -name "*_drv.so" -exec cp {} "${MODULE_BUILD_DIR}/usr/lib/xorg/modules/drivers" \;
done
fi
+ # Extra .deb packages
+ local deb dir
+ for deb in $REQUIRED_DEB_PACKAGES; do
+ dir="${MODULE_WORK_DIR}/${deb##*/}"
+ download "$deb" "$dir"
+ apt install -y "$dir" || perror "apt install $dir failed."
+ done
}
post_copy() {