diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-06-23 15:48:47 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-01 09:59:25 +0200 |
commit | 8501dc084246e1f90f1822b7f6b30c09c6d8c99c (patch) | |
tree | 8ef84c1249fd722185133d6f0f710eb57901172f | |
parent | 7b32361bd7e2a4a65123f90dcc1e9ff9e90ca2ba (diff) | |
download | meta-openembedded-8501dc084246e1f90f1822b7f6b30c09c6d8c99c.tar.gz |
open-vm-tools: fix all hardcoded paths
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb index 4ab2820c1c..2a83e864f7 100644 --- a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb +++ b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | |||
@@ -56,15 +56,15 @@ PACKAGECONFIG[fuse] = ",,fuse" | |||
56 | CFLAGS += "-Wno-error=deprecated-declarations" | 56 | CFLAGS += "-Wno-error=deprecated-declarations" |
57 | 57 | ||
58 | FILES_${PN} += "\ | 58 | FILES_${PN} += "\ |
59 | /usr/lib/open-vm-tools/plugins/vmsvc/lib*.so \ | 59 | ${libdir}/open-vm-tools/plugins/vmsvc/lib*.so \ |
60 | /usr/lib/open-vm-tools/plugins/common/lib*.so \ | 60 | ${libdir}/open-vm-tools/plugins/common/lib*.so \ |
61 | ${sysconfdir}/vmware-tools/tools.conf \ | 61 | ${sysconfdir}/vmware-tools/tools.conf \ |
62 | " | 62 | " |
63 | FILES_${PN}-locale += "/usr/share/open-vm-tools/messages" | 63 | FILES_${PN}-locale += "${datadir}/open-vm-tools/messages" |
64 | FILES_${PN}-dev += "/usr/lib/open-vm-tools/plugins/common/lib*.la" | 64 | FILES_${PN}-dev += "${libdir}/open-vm-tools/plugins/common/lib*.la" |
65 | FILES_${PN}-dbg += "\ | 65 | FILES_${PN}-dbg += "\ |
66 | /usr/lib/open-vm-tools/plugins/common/.debug \ | 66 | ${libdir}/open-vm-tools/plugins/common/.debug \ |
67 | /usr/lib/open-vm-tools/plugins/vmsvc/.debug \ | 67 | ${libdir}/open-vm-tools/plugins/vmsvc/.debug \ |
68 | " | 68 | " |
69 | 69 | ||
70 | CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" | 70 | CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" |
@@ -72,7 +72,7 @@ CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" | |||
72 | RDEPENDS_${PN} = "util-linux libdnet fuse" | 72 | RDEPENDS_${PN} = "util-linux libdnet fuse" |
73 | 73 | ||
74 | do_install_append() { | 74 | do_install_append() { |
75 | ln -sf /usr/sbin/mount.vmhgfs ${D}/sbin/mount.vmhgfs | 75 | ln -sf ${sbindir}/mount.vmhgfs ${D}/sbin/mount.vmhgfs |
76 | install -d ${D}${systemd_unitdir}/system ${D}${sysconfdir}/vmware-tools | 76 | install -d ${D}${systemd_unitdir}/system ${D}${sysconfdir}/vmware-tools |
77 | install -m 644 ${WORKDIR}/*.service ${D}${systemd_unitdir}/system | 77 | install -m 644 ${WORKDIR}/*.service ${D}${systemd_unitdir}/system |
78 | install -m 0644 ${WORKDIR}/tools.conf ${D}${sysconfdir}/vmware-tools/tools.conf | 78 | install -m 0644 ${WORKDIR}/tools.conf ${D}${sysconfdir}/vmware-tools/tools.conf |