summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthor <thor@pkgsrc.org>2021-06-01 22:13:35 +0000
committerthor <thor@pkgsrc.org>2021-06-01 22:13:35 +0000
commitd41e72464e98a30d193396cc21fd858b4cd366d5 (patch)
treecc6db51c3c145758cf2f3e57cb22afac69d77a8f
parenta9ac526a5b88b058fe12051603b3c6e889e100f5 (diff)
downloadpkgsrc-d41e72464e98a30d193396cc21fd858b4cd366d5.tar.gz
math/lapack: fix static library name preparing for lapack64
The upcoming lapack64 needs the library name liblapack64, the variable for that was missing in the patch. This does not change the build of math/lapack itself.
-rw-r--r--math/lapack/patches/patch-SRC_CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/lapack/patches/patch-SRC_CMakeLists.txt b/math/lapack/patches/patch-SRC_CMakeLists.txt
index 94bf6e6f748..ddb29ebc63b 100644
--- a/math/lapack/patches/patch-SRC_CMakeLists.txt
+++ b/math/lapack/patches/patch-SRC_CMakeLists.txt
@@ -1,4 +1,4 @@
-$NetBSD: patch-SRC_CMakeLists.txt,v 1.2 2021/05/12 14:32:51 thor Exp $
+$NetBSD: patch-SRC_CMakeLists.txt,v 1.3 2021/06/01 22:13:35 thor Exp $
Support combined build of shared and static libraries.
@@ -12,7 +12,7 @@ Support combined build of shared and static libraries.
+ add_library(${LAPACKLIB}_static STATIC ${SOURCES})
+ set_target_properties(
+ ${LAPACKLIB}_static PROPERTIES
-+ OUTPUT_NAME lapack
++ OUTPUT_NAME ${LAPACKLIB}
+ )
+
+ if(USE_XBLAS)