diff options
author | Ross Burton <ross.burton@intel.com> | 2019-06-18 11:47:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-19 12:46:44 +0100 |
commit | 01bff84386c8b0e1ddc6f0b93ebc04990586785d (patch) | |
tree | a7b07da29bc59584811fb12fd04dc4fdd3190334 /meta/classes/binconfig.bbclass | |
parent | dbf5d29c3d25405382533cdb8779229ccff662f2 (diff) | |
download | poky-01bff84386c8b0e1ddc6f0b93ebc04990586785d.tar.gz |
binconfig: don't try to fix up .la files
If we're going to clean buildpaths from installed .la files then we should do it
globally, not in a class that only six recipes in oe-core use.
(From OE-Core rev: bd4e2cd3f70243f52215f8c92bcd7eb088a9b9f6)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/binconfig.bbclass')
-rw-r--r-- | meta/classes/binconfig.bbclass | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/meta/classes/binconfig.bbclass b/meta/classes/binconfig.bbclass index 133b9537cf..9112ed4608 100644 --- a/meta/classes/binconfig.bbclass +++ b/meta/classes/binconfig.bbclass | |||
@@ -40,15 +40,6 @@ binconfig_package_preprocess () { | |||
40 | -e 's:${STAGING_DIR_HOST}${prefix}:${prefix}:' \ | 40 | -e 's:${STAGING_DIR_HOST}${prefix}:${prefix}:' \ |
41 | $config | 41 | $config |
42 | done | 42 | done |
43 | for lafile in `find ${PKGD} -type f -name "*.la"` ; do | ||
44 | sed -i \ | ||
45 | -e 's:${STAGING_BASELIBDIR}:${base_libdir}:g;' \ | ||
46 | -e 's:${STAGING_LIBDIR}:${libdir}:g;' \ | ||
47 | -e 's:${STAGING_INCDIR}:${includedir}:g;' \ | ||
48 | -e 's:${STAGING_DATADIR}:${datadir}:' \ | ||
49 | -e 's:${STAGING_DIR_HOST}${prefix}:${prefix}:' \ | ||
50 | $lafile | ||
51 | done | ||
52 | } | 43 | } |
53 | 44 | ||
54 | SYSROOT_PREPROCESS_FUNCS += "binconfig_sysroot_preprocess" | 45 | SYSROOT_PREPROCESS_FUNCS += "binconfig_sysroot_preprocess" |