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

[skip ci]


(cherry picked from commit f3dc269df6)
This commit is contained in:
Guy Harris 2020-12-19 22:21:15 +00:00
parent 7e54366ef9
commit ba3e22673a
1 changed files with 8 additions and 1 deletions

View File

@ -816,7 +816,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