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
@@ -37,7 +37,7 @@ SRC_URI = "git://github.com/vmware/open-vm-tools.git;protocol=https \
file://0003-use-posix-strerror_r-unless-on-gnu-libc-system.patch \ file://0003-use-posix-strerror_r-unless-on-gnu-libc-system.patch \
file://0004-Use-uintmax_t-for-handling-rlim_t.patch \ file://0004-Use-uintmax_t-for-handling-rlim_t.patch \
file://0001-Use-off64_t-instead-of-__off64_t.patch \ file://0001-Use-off64_t-instead-of-__off64_t.patch \
" "
SRCREV = "2147df6aabe639fc5ff423ed791a8e7f02bf8d0a" SRCREV = "2147df6aabe639fc5ff423ed791a8e7f02bf8d0a"
S = "${WORKDIR}/git/open-vm-tools" S = "${WORKDIR}/git/open-vm-tools"
@@ -68,13 +68,9 @@ FILES_${PN} += "\
${libdir}/open-vm-tools/plugins/vmsvc/lib*.so \ ${libdir}/open-vm-tools/plugins/vmsvc/lib*.so \
${libdir}/open-vm-tools/plugins/common/lib*.so \ ${libdir}/open-vm-tools/plugins/common/lib*.so \
${sysconfdir}/vmware-tools/tools.conf \ ${sysconfdir}/vmware-tools/tools.conf \
" "
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.')
} }