macos-setup: work around a botch in GLib "make distclean".

[skip ci]
This commit is contained in:
Guy Harris 2020-12-19 14:21:15 -08:00
parent 7052994a19
commit f3dc269df6
1 changed files with 8 additions and 1 deletions

View File

@ -815,7 +815,14 @@ uninstall_glib() {
echo "Uninstalling GLib:"
cd glib-$installed_glib_version
$DO_MAKE_UNINSTALL || exit 1
make distclean || exit 1
#
# This appears to delete dependencies out from under other
# Makefiles in the tree, causing it to fail. At least until
# that gets fixed, if it ever gets fixed, we just ignore the
# exit status of "make distclean"
#
# make distclean || exit 1
make distclean || echo "Ignoring make distclean failure" 1>&2
cd ..
rm glib-$installed_glib_version-done