Skip to content

Commit

Permalink
name the python3 builds differently
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@16980 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 29, 2017
1 parent ec65a81 commit 1eb824b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/win32/MINGW_BUILD.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ BUNDLE_PUTTY=${BUNDLE_PUTTY:-1}
BUNDLE_OPENSSL=${BUNDLE_OPENSSL:-1}

PYTHON=${PYTHON:-python2}
echo "PYTHON='${PYTHON}'"


KEY_FILE="E:\\xpra.pfx"
DIST="./dist"
Expand Down Expand Up @@ -88,15 +86,18 @@ if [ "${CLIENT_ONLY}" == "1" ]; then
EXTRA_VERSION="-Client"
DO_CUDA="0"
fi
BUILD_TYPE=""
echo
echo -n "Xpra${EXTRA_VERSION} ${FULL_VERSION}"
if [ "${MSYSTEM_CARCH}" == "i686" ]; then
BUILD_TYPE=""
DO_CUDA="0"
else
BUILD_TYPE="-${MSYSTEM_CARCH}"
echo " (64-bit)"
fi
if [ "${PYTHON_MAJOR_VERSION}" == "3" ]; then
BUILD_TYPE="-Python3${BUILD_TYPE}"
fi
echo
echo

Expand Down

0 comments on commit 1eb824b

Please sign in to comment.