pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/lapack/patches math/lapack: fix static library na...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/90ffc9387619
branches:  trunk
changeset: 453698:90ffc9387619
user:      thor <thor%pkgsrc.org@localhost>
date:      Tue Jun 01 22:13:35 2021 +0000

description:
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.

diffstat:

 math/lapack/patches/patch-SRC_CMakeLists.txt |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 266d348fea7b -r 90ffc9387619 math/lapack/patches/patch-SRC_CMakeLists.txt
--- a/math/lapack/patches/patch-SRC_CMakeLists.txt      Tue Jun 01 22:11:14 2021 +0000
+++ b/math/lapack/patches/patch-SRC_CMakeLists.txt      Tue Jun 01 22:13:35 2021 +0000
@@ -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 @@
 +  add_library(${LAPACKLIB}_static STATIC ${SOURCES})
 +  set_target_properties(
 +    ${LAPACKLIB}_static PROPERTIES
-+    OUTPUT_NAME lapack
++    OUTPUT_NAME ${LAPACKLIB}
 +    )
 +
 +  if(USE_XBLAS)



Home | Main Index | Thread Index | Old Index