diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-30 23:11:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 23:47:33 +0000 |
commit | 3e2a47fdfceccd5f8832235b7a2df83076e84a98 (patch) | |
tree | e25c1819f6eaf086f933edb748f853bb5168dd58 /meta/conf/distro | |
parent | e9256edb3399221f62e526ab5cbe3bd475c636c6 (diff) | |
download | poky-3e2a47fdfceccd5f8832235b7a2df83076e84a98.tar.gz |
distro/defaultsetup: Enable removal of libtool .la files by default
Relocation of native .la files during recipe specific sysroot relocation
is probably the final straw in just killing these files off.
Change things so this class is inherited by default. If distros don't want to
do this, they can opt out but it seems like the best thing to do now since
.la files aren't needed on Linux.
(From OE-Core rev: 11d801f6a7319a95f824842df118c446f8da7a71)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro')
-rw-r--r-- | meta/conf/distro/defaultsetup.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/defaultsetup.conf b/meta/conf/distro/defaultsetup.conf index 1055b9bb93..ca2f9178d2 100644 --- a/meta/conf/distro/defaultsetup.conf +++ b/meta/conf/distro/defaultsetup.conf | |||
@@ -20,5 +20,5 @@ CACHE = "${TMPDIR}/cache/${TCMODE}-${TCLIBC}${@['', '/' + str(d.getVar('MACHINE' | |||
20 | USER_CLASSES ?= "" | 20 | USER_CLASSES ?= "" |
21 | PACKAGE_CLASSES ?= "package_ipk" | 21 | PACKAGE_CLASSES ?= "package_ipk" |
22 | INHERIT_BLACKLIST = "blacklist" | 22 | INHERIT_BLACKLIST = "blacklist" |
23 | INHERIT_DISTRO ?= "debian devshell sstate license" | 23 | INHERIT_DISTRO ?= "debian devshell sstate license remove-libtool" |
24 | INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST}" | 24 | INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST}" |