Skip to content

Commit

Permalink
wip github CI fix 4
Browse files Browse the repository at this point in the history
  • Loading branch information
antmak committed Dec 1, 2023
1 parent 40d70de commit eef9e59
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/scripts/configure-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ sed -i='' "s/project('qemu', \['c'\],/project('qemu', \['c', 'objc'\],/" meson.b

sed -i='' "s/common_user_inc = \[\]/common_user_inc = \['include', 'build'\]/" meson.build

if [ -f /usr/local/Cellar/glib/2.78.1/share/glib-2.0/codegen/utils.py ] ; then
sed -i='' "s/import distutils.version/import packaging/" /usr/local/Cellar/glib/2.78.1/share/glib-2.0/codegen/utils.py
grep -v "^#" /usr/local/Cellar/glib/2.78.1/share/glib-2.0/codegen/utils.py | head
PYFIX_FILE=/usr/local/Cellar/glib/2.78.1/share/glib-2.0/codegen/utils.py
if [ -f "${PYFIX_FILE}" ] ; then
sed -i='' "s/import distutils.version/import packaging/" "${PYFIX_FILE}"
grep -v "^#" "${PYFIX_FILE}" | head
fi

echo DBG
Expand Down

0 comments on commit eef9e59

Please sign in to comment.