summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-02-13 18:44:44 +0100
committerKhem Raj <raj.khem@gmail.com>2025-02-13 11:34:55 -0800
commitb16f9c6f046fa6275d1afa7ee60acc8d85849163 (patch)
tree566bf4e98acc98b26a405949f3c381e2851d5144
parent10ae09fb46f0ef6b1fd600ac8772c0459231c995 (diff)
downloadmeta-openembedded-b16f9c6f046fa6275d1afa7ee60acc8d85849163.tar.gz
xfce4-sensors-plugin: correct netcat PACKAGECONFIG
In case netcat PACKAGECONFIG is enabled, do_configure fails with the following error message: | configure: error: hddtemp isn't queryable via netcat (use --disable-pathchecks to disable this check) hddtemp service keeps a TCP port open to query the sensor data. In case netcat is enabled for this recipe, the configure script will search for the netcat binary, and will try to query this hddtemp port, as a sanity check. This check is performed independently from the hddtemp PACKAGECONFIG. Since hddtemp isn't running in the build environment (probably) and network connection is also disabled, this check fails. To avoid this problem, add the extra config argument suggested by the error message. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.4.bb b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.4.bb
index eb1165c578..de3232c64a 100644
--- a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.4.bb
+++ b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.4.bb
@@ -22,7 +22,7 @@ do_configure:prepend() {
22PACKAGECONFIG ??= "libnotify" 22PACKAGECONFIG ??= "libnotify"
23PACKAGECONFIG[libsensors] = "--enable-libsensors,--disable-libsensors, lmsensors" 23PACKAGECONFIG[libsensors] = "--enable-libsensors,--disable-libsensors, lmsensors"
24PACKAGECONFIG[hddtemp] = "--enable-hddtemp,--disable-hddtemp, hddtemp" 24PACKAGECONFIG[hddtemp] = "--enable-hddtemp,--disable-hddtemp, hddtemp"
25PACKAGECONFIG[netcat] = "--enable-netcat,--disable-netcat, netcat" 25PACKAGECONFIG[netcat] = "--enable-netcat --disable-pathchecks,--disable-netcat, netcat"
26PACKAGECONFIG[libnotify] = "--enable-notification,--disable-notification, libnotify" 26PACKAGECONFIG[libnotify] = "--enable-notification,--disable-notification, libnotify"
27 27
28FILES_SOLIBSDEV = "${libdir}/xfce4/modules/lib*${SOLIBSDEV}" 28FILES_SOLIBSDEV = "${libdir}/xfce4/modules/lib*${SOLIBSDEV}"