2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

glib: Don't build fuzzing stuff

This commit is contained in:
Dylan Araps 2020-03-14 07:09:43 +02:00
parent 9bb1da7256
commit c3acfc5872
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -6,8 +6,9 @@ export DESTDIR="$1"
sed -i 's/if have_libelf/if not have_libelf/' gio/meson.build
sed -i 's/libmount_dep.found()/false/' meson.build
# Don't build tests.
find . -type f -name meson.build -exec sed -i "/subdir('tests')/d" {} +
# Don't build tests/fuzzing stuff.
find . -type f -name meson.build -exec \
sed -i "/subdir('tests')/d;/subdir('fuzzing')/d" {} +
meson \
--prefix=/usr \