summaryrefslogtreecommitdiffstats
path: root/wine
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2014-03-19 13:52:56 +0000
committer Eric Hameleers <alien@slackware.com>2014-03-19 13:52:56 +0000
commit67614896dee0477a6cdf8880b099062b47663870 (patch)
treefcb0fd3344fde916ac0217f1255bd96a649d5a29 /wine
parentf6c404eae064985af9da07a3fd50454452504a36 (diff)
downloadasb-67614896dee0477a6cdf8880b099062b47663870.tar.gz
asb-67614896dee0477a6cdf8880b099062b47663870.tar.xz
Fix a syntax issue
Diffstat (limited to 'wine')
-rwxr-xr-xwine/build/wine.SlackBuild6
1 files changed, 5 insertions, 1 deletions
diff --git a/wine/build/wine.SlackBuild b/wine/build/wine.SlackBuild
index fa31f166..ee9c056c 100755
--- a/wine/build/wine.SlackBuild
+++ b/wine/build/wine.SlackBuild
@@ -110,7 +110,7 @@ BUILD=${BUILD:-1}
TAG=${TAG:-alien}
# If you do not want wine64 on Slackware64, set this to "no":
-DO_WINE64=$DO_WINE64:-"yes"}
+DO_WINE64=${DO_WINE64:-"yes"}
# Add the "Gecko", Wine's own implementation of Internet Explorer.
# For matching wine_gecko & wine versions, see http://wiki.winehq.org/Gecko
@@ -265,6 +265,10 @@ chmod -R u+w,go+r-w,a+X-s .
echo Building ...
+if [ "${DO_WINE64}" = "yes" ]; then
+ echo "Also building wine64 (shared support, aka WoW64)"
+fi
+
if [ "${OPENGL}" = "YES" -o "${OPENGL}" = "yes" ]; then
do_opengl=""
else