Skip to content

Commit

Permalink
MinGW: Skip windows api libraries in dependency collection
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro authored and 3nids committed Jun 24, 2021
1 parent 7c69504 commit d28c5f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ms-windows/mingw/build.sh
Expand Up @@ -169,6 +169,7 @@ function linkDep {
local name="$(basename $1)"
test -e "$destdir/$name" && return 0
test -e "$destdir/qgisplugins/$name" && return 0
[[ "$1" == *api-ms-win* ]] && return 0
echo "${indent}${1}"
[ ! -e "$MINGWROOT/$1" ] && echo "Error: missing $MINGWROOT/$1" && return 1
mkdir -p "$destdir" || return 1
Expand Down

0 comments on commit d28c5f3

Please sign in to comment.