open-vm-tools: fix indentation and drop FILES_${PN}-dbg

* don't mix tabs and spaces for indentation, removes new warning:
  meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.3.0.bb: python should use 4 spaces indentation, but found tabs in open-vm-tools_10.3.0.bb, line 107
* remove FILES_${PN}-dbg variable, all .debug directories are
  packaged automatically in ${PN}-dbg for long time (at least since
  2.1 Krogoth) since this oe-core commit:
      commit da5ec06814e105451cca11cce76b5c5231110524
      Author: Richard Purdie <richard.purdie@linuxfoundation.org>
      Date:   Tue Dec 15 15:38:54 2015 +0000

        package: Add auto package splitting of .debug files

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Martin Jansa
2018-12-05 14:37:46 +00:00
committed by Khem Raj
parent 030e8d445a
commit ebcd20dc7d
@@ -71,10 +71,6 @@ FILES_${PN} += "\
" "
FILES_${PN}-locale += "${datadir}/open-vm-tools/messages" FILES_${PN}-locale += "${datadir}/open-vm-tools/messages"
FILES_${PN}-dev += "${libdir}/open-vm-tools/plugins/common/lib*.la" FILES_${PN}-dev += "${libdir}/open-vm-tools/plugins/common/lib*.la"
FILES_${PN}-dbg += "\
${libdir}/open-vm-tools/plugins/common/.debug \
${libdir}/open-vm-tools/plugins/vmsvc/.debug \
"
CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf"
@@ -107,4 +103,3 @@ python() {
'filesystems-layer' not in d.getVar('BBFILE_COLLECTIONS').split(): 'filesystems-layer' not in d.getVar('BBFILE_COLLECTIONS').split():
raise bb.parse.SkipRecipe('Requires meta-networking and meta-filesystems to be present.') raise bb.parse.SkipRecipe('Requires meta-networking and meta-filesystems to be present.')
} }