Skip to content

Commit 65d72a3

Browse files
committed
Fix for interface bitness check
1 parent 989ea36 commit 65d72a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_openblas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Convert to Unix-style path
2424
openblas_root="$(cygpath ${1:-${OPENBLAS_ROOT:-c:\\opt}})"
2525
build_bits="${2:-${BUILD_BITS:-64}}"
26-
if [ "$INTERFACE64" == "1" ]; then if_default=64 else if_default=32; fi
26+
if [ "$INTERFACE64" == "1" ]; then if_default=64; else if_default=32; fi
2727
if_bits=${3:-${if_default}}
2828
# Our directory for later copying
2929
if [ -z "$START_DIR" ]; then

0 commit comments

Comments
 (0)