Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not use linux-latest runner, use an older stable version. #598

Merged
merged 9 commits into from Sep 29, 2021
4 changes: 2 additions & 2 deletions platforms/unix/config/configure
Expand Up @@ -12115,10 +12115,10 @@ fi

########################

PKG_CONFIG=$host-pkg-config
PKG_CONFIG=/usr/bin/$host-pkg-config
if [ ! $(type -t $PKG_CONFIG) ]; then
# Workaround for Debian/Ubuntu
PKG_CONFIG=i686-linux-gnu-pkg-config
PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
fi

########################
Expand Down
4 changes: 2 additions & 2 deletions platforms/unix/config/configure.ac
Expand Up @@ -263,10 +263,10 @@ fi

########################

PKG_CONFIG=$host-pkg-config
PKG_CONFIG=/usr/bin/$host-pkg-config
if [[ ! $(type -t $PKG_CONFIG) ]]; then
# Workaround for Debian/Ubuntu
PKG_CONFIG=i686-linux-gnu-pkg-config
PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
fi

########################
Expand Down