mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
b3a5da5b5c
Fixes g-ir-scanner breakage that seems to happen with latest Meson 1.6.0. /usr/bin/ld: build/tmp-introspectki7q5vp9/GstBase-1.0.o: undefined reference to symbol 'gst_init' /usr/bin/ld: build/subprojects/gstreamer/gst/libgstreamer-1.0.so.0: error adding symbols: DSO missing from command line Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7753>
12 lines
240 B
Bash
12 lines
240 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
apt update -y && apt full-upgrade -y
|
|
apt install -y $(<./ci/docker/debian/deps.txt)
|
|
|
|
apt remove -y rustc cargo
|
|
|
|
pip3 install --break-system-packages meson==1.5.2 hotdoc python-gitlab tomli junitparser
|
|
|
|
apt clean all
|