move all sensor daemons to libexec
Per the organization anti-pattern, executables are expected to be
installed into libexec instead of bin[1]. Update service files and
meson to install there.
[1]: https://github.com/openbmc/docs/blob/master/anti-patterns.md#incorrect-placement-of-executables-in-sbin-usrsbin-or-bin-usrbin
Change-Id: I1eb4003e94b83b09829d63346c2e16a3ff02a3e9
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/src/fan/meson.build b/src/fan/meson.build
index 1567a8e..2fbeefc 100644
--- a/src/fan/meson.build
+++ b/src/fan/meson.build
@@ -9,4 +9,5 @@
dependencies: [default_deps, gpiodcxx, thresholds_dep, utils_dep],
include_directories: src_inc,
install: true,
+ install_dir: '/usr/libexec/dbus-sensors',
)