From f71a62353f5a42a92da1493026f49483f7344709 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 19 Dec 2016 09:00:24 -0700 Subject: [PATCH] glibc-external: fix libm* fixup We don't want the 'libm*.so.*' kept in our FILES, as it's too greedy, and results in picking up the wrong things. Signed-off-by: Christopher Larson --- recipes-external/glibc/glibc-external.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-external/glibc/glibc-external.bb b/recipes-external/glibc/glibc-external.bb index 6b51310..1dea375 100644 --- a/recipes-external/glibc/glibc-external.bb +++ b/recipes-external/glibc/glibc-external.bb @@ -152,7 +152,7 @@ python () { # Ensure that we pick up just libm, not all libs that start with m baselibs = d.getVar('libc_baselibs', False) - baselibs.replace('${base_libdir}/libm*.so.*', '${base_libdir}/libm.so.*') + baselibs = baselibs.replace('${base_libdir}/libm*.so.*', '${base_libdir}/libm.so.*') d.setVar('libc_baselibs', baselibs) }