pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/lapack/patches



Module Name:    pkgsrc
Committed By:   thor
Date:           Tue Jun  1 22:13:35 UTC 2021

Modified Files:
        pkgsrc/math/lapack/patches: patch-SRC_CMakeLists.txt

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt
diff -u pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.2 pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.3
--- pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.2     Wed May 12 14:32:51 2021
+++ pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt Tue Jun  1 22:13:35 2021
@@ -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 sta
 +  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