From ee79c2e299bcfa2ebcb9bc0187e9b59e21b466d1 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 29 Jun 2022 12:43:42 -0700 Subject: [PATCH] build/pkgs/numpy/spkg-install.in: Fix 32bit build on x86_64 (fixup) --- build/pkgs/numpy/spkg-install.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pkgs/numpy/spkg-install.in b/build/pkgs/numpy/spkg-install.in index 408c8e726ca..f66c6f56426 100644 --- a/build/pkgs/numpy/spkg-install.in +++ b/build/pkgs/numpy/spkg-install.in @@ -41,7 +41,7 @@ fi # Trac #32423: Fix 32-bit builds on x86_64 ARCH=$($CC -dumpmachine 2>/dev/null || echo unknown) case "$ARCH" in - x86_64) + *x86_64*) ;; *) export NPY_DISABLE_SVML=1