summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/suitesparse
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2023-02-01 16:50:53 +0100
committerKhem Raj <raj.khem@gmail.com>2023-02-01 09:28:47 -0800
commit49c1e98885eb0e7befc74c85f385cbdee612830e (patch)
tree9cb5fafac2d1d01c6fd47c04a5a330519980b502 /meta-oe/recipes-devtools/suitesparse
parent195caefc6577ac9a17695c2da3da1aee77cdae4b (diff)
downloadmeta-openembedded-49c1e98885eb0e7befc74c85f385cbdee612830e.tar.gz
meta: remove True option to getVar calls (again)
* True is default since 2016 and most layers were already updated not to pass this parameter where not necessary, e.g. oe-core was updated couple times, first in: https://git.openembedded.org/openembedded-core/commit/?id=7c552996597faaee2fbee185b250c0ee30ea3b5f Updated with the same regexp as later oe-core update: https://git.openembedded.org/openembedded-core/commit/?id=9f551d588693328e4d99d33be94f26684eafcaba Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/suitesparse')
-rw-r--r--meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb b/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
index 56cbfce20e..13e6fd066c 100644
--- a/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
+++ b/meta-oe/recipes-devtools/suitesparse/suitesparse_5.10.1.bb
@@ -19,14 +19,14 @@ RPROVIDES:${PN} = "mongoose graphblas"
19# the command line. To get around this problem, set these variables to only the 19# the command line. To get around this problem, set these variables to only the
20# program name and prepend the rest of the value onto the corresponding FLAGS 20# program name and prepend the rest of the value onto the corresponding FLAGS
21# variable. 21# variable.
22CFLAGS:prepend := "${@" ".join(d.getVar('CC', True).split()[1:])} " 22CFLAGS:prepend := "${@" ".join(d.getVar('CC').split()[1:])} "
23export CC := "${@d.getVar('CC', True).split()[0]}" 23export CC := "${@d.getVar('CC').split()[0]}"
24 24
25CXXFLAGS:prepend := "${@" ".join(d.getVar('CXX', True).split()[1:])} " 25CXXFLAGS:prepend := "${@" ".join(d.getVar('CXX').split()[1:])} "
26export CXX := "${@d.getVar('CXX', True).split()[0]}" 26export CXX := "${@d.getVar('CXX').split()[0]}"
27 27
28LDFLAGS:prepend := "${@" ".join(d.getVar('LD', True).split()[1:])} " 28LDFLAGS:prepend := "${@" ".join(d.getVar('LD').split()[1:])} "
29export LD := "${@d.getVar('LD', True).split()[0]}" 29export LD := "${@d.getVar('LD').split()[0]}"
30 30
31export CMAKE_OPTIONS = " \ 31export CMAKE_OPTIONS = " \
32 -DCMAKE_INSTALL_PREFIX=${D}${prefix} \ 32 -DCMAKE_INSTALL_PREFIX=${D}${prefix} \