We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb3b606 commit 5b6baafCopy full SHA for 5b6baaf
external_deps/build.sh
@@ -979,6 +979,9 @@ build_install() {
979
find "${PKG_PREFIX}/bin" -name '*.dll' -execdir "${HOST}-strip" --strip-unneeded -- {} \;
980
find "${PKG_PREFIX}/lib" -name '*.a' -execdir rm -f -- {} \;
981
find "${PKG_PREFIX}/lib" -name '*.exp' -execdir rm -f -- {} \;
982
+
983
+ # Fix import lib paths to use MSVC-style instead of MinGW ones (see 'genlib' target)
984
+ find "${PKG_PREFIX}/lib/cmake" -name '*.cmake' -execdir sed -i -E 's@[.]dll[.]a\b@.lib@g' {} \;
985
;;
986
esac
987
0 commit comments