mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-07 08:24:42 +02:00
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 <chris_larson@mentor.com>
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user