summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-11-18 19:11:37 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-11-18 19:11:37 (GMT)
commitdf30709094a059686a8570c5fd2bdb20d21948e1 (patch)
tree57c7bc0d2ac0243c7de5abb52495b7b1ee9e1407 /src
parent58f0234a56612b209e8df858a38c14e0d0a96e6f (diff)
downloadmxe-df30709094a059686a8570c5fd2bdb20d21948e1.zip
mxe-df30709094a059686a8570c5fd2bdb20d21948e1.tar.gz
mxe-df30709094a059686a8570c5fd2bdb20d21948e1.tar.bz2
openblas: Add missing parenthesis
Fixes #559. Don't know how it worked before.
Diffstat (limited to 'src')
-rw-r--r--src/openblas.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openblas.mk b/src/openblas.mk
index 1583ab0..74407fe 100644
--- a/src/openblas.mk
+++ b/src/openblas.mk
@@ -34,7 +34,7 @@ $(PKG)_MAKE_OPTS = \
DYNAMIC_ARCH=1 \
ARCH=$(strip \
$(if $(findstring x86_64,$(TARGET)),x86_64,\
- $(if $(findstring i686,$(TARGET)),x86)) \
+ $(if $(findstring i686,$(TARGET)),x86))) \
BINARY=$(BITS) \
$(if $(BUILD_STATIC),NO_SHARED=1) \
$(if $(BUILD_SHARED),NO_STATIC=1) \