Browse Source

Fix a typo, export EXE_WRAPPER for mingw builds

tags/v1.0
falkTX 4 years ago
parent
commit
af3c73c034
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      setup/env.sh

+ 2
- 1
setup/env.sh View File

@@ -140,9 +140,10 @@ if [ "${MACOS}" -eq 1 ]; then
fi
elif [ "${WIN32}" -eq 1 ]; then
MAKE_ARGS+=" WINDOWS=true WIN32=true"
if [ "${WIN32}" -eq 1 ]; then
if [ "${WIN64}" -eq 1 ]; then
MAKE_ARGS+=" WIN64=true"
fi
export EXE_WRAPPER="wine"
fi

# ---------------------------------------------------------------------------------------------------------------------

Loading…
Cancel
Save