summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2022-10-03 11:25:45 +0000
committerbsiegert <bsiegert@pkgsrc.org>2022-10-03 11:25:45 +0000
commite2075604b0e044b16fb5d49964103f0e02810f65 (patch)
tree68394bec93e837519b8ebf74b8314dbd219b0e7b
parent34d15cf1e7e6de4d0a518e7addfd28f7b9e59976 (diff)
downloadpkgsrc-e2075604b0e044b16fb5d49964103f0e02810f65.tar.gz
Pullup ticket #6673 - requested by thor
blas: build fix for BLAS_TYPE=openblas_pthread Revisions pulled up: - mk/blas.buildlink3.mk 1.4 --- Module Name: pkgsrc Committed By: thor Date: Mon Sep 26 09:33:01 UTC 2022 Modified Files: pkgsrc/mk: blas.buildlink3.mk Log Message: blas.bl3: Fix BLAS_INCLUDES for openblas_pthread with 32 bit (default) indices
-rw-r--r--mk/blas.buildlink3.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/blas.buildlink3.mk b/mk/blas.buildlink3.mk
index 87cd4ba006e..0c30440a114 100644
--- a/mk/blas.buildlink3.mk
+++ b/mk/blas.buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: blas.buildlink3.mk,v 1.3 2022/08/30 14:54:22 thor Exp $
+# $NetBSD: blas.buildlink3.mk,v 1.3.2.1 2022/10/03 11:25:45 bsiegert Exp $
#
# This Makefile fragment is meant to be included by packages that use any
# BLAS (Basic Linear Algebra System) implementation instead of one particular
@@ -156,7 +156,7 @@ BLAS_LIBS= -lopenblas${_BLAS_64}_pthread
LAPACK_LIBS= ${BLAS_LIBS}
CBLAS_LIBS= ${BLAS_LIBS}
LAPACKE_LIBS= ${BLAS_LIBS}
-BLAS_INCLUDES= -I${PREFIX}/include/openblas64_pthread
+BLAS_INCLUDES= -I${PREFIX}/include/openblas${_BLAS_64}_pthread
BLAS_PC= openblas${_BLAS_64}_pthread
LAPACK_PC= ${BLAS_PC}
CBLAS_PC= ${BLAS_PC}