Skip to content

Commit

Permalink
makepkg: Skip adding mingw-w64-gcc to makedepends when _NOMINGW="true…
Browse files Browse the repository at this point in the history
…" is set in addition with an empty CUSTOM_MINGW_PATH value.

Fixes #1269
  • Loading branch information
Tk-Glitch committed Sep 26, 2024
1 parent f40522c commit de5feba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wine-tkg-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ if [ "$_NOLIB32" = "false" ]; then
fi

# mingw
if [ -z "${CUSTOM_MINGW_PATH}" ]; then
if [ "$_NOMINGW" != "true" ] && [ -z "${CUSTOM_MINGW_PATH}" ]; then
makedepends+=('mingw-w64-gcc')
fi

Expand Down

0 comments on commit de5feba

Please sign in to comment.