mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 09:26:17 +01:00
b3f49d08a6
Rather than carrying the copylib around inside GLib, which is a pain to synchronise and affects our code coverage statistics. This requires updating the CI images to cache the new subproject, including updating the `cache-subprojects.sh` script to pull in git submodules. It also requires adding `gioenumtypes_dep` to be added to the dependencies list of `libgio`, since it needs to be build before GVDB as it’s pulled in by the GIO headers which GVDB includes. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #2603
11 lines
233 B
Bash
Executable File
11 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git clone --depth 1 --no-tags https://gitlab.gnome.org/GNOME/glib.git
|
|
git -C glib submodule update --init
|
|
meson subprojects download --sourcedir glib
|
|
rm glib/subprojects/*.wrap
|
|
mv glib/subprojects/ .
|
|
rm -rf glib
|