Merge pull request #5005 from zhangn1985/fix-build

[game.libretro.vecx] fix build issue when opengl is disabled
This commit is contained in:
Christian Hewitt 2021-01-21 14:37:15 +04:00 committed by GitHub
commit ff9d6b422b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,11 @@ PKG_LIBPATH="${PKG_LIBNAME}"
PKG_LIBVAR="VECX_LIB"
make_target() {
make
if [ "$OPENGL_SUPPORT" = no ]; then
HAS_GLES=1 make
else
make
fi
}
makeinstall_target() {