Package: lxpanel Version: 0.5.9-2 Severity: important Tags: patch User: [email protected] Usertags: hurd
Hi, lxpanel 0.5.9-2 fails to build[2] on hurd-i386. The problem is that the if() in debian/rules to differentiate between linux & non-linux actually differentiates between kfreebsd & non-kfreebsd. Attached there is a patch to fix that if(). [1] https://buildd.debian.org/status/fetch.php?pkg=lxpanel&arch=hurd-i386&ver=0.5.9-2&stamp=1335299287 Thanks, -- Pino
--- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ override_dh_autoreconf: dh_autoreconf debian/rules -- autoreconf override_dh_auto_configure: -ifeq ($(DEB_HOST_ARCH_OS),kfreebsd) +ifneq ($(DEB_HOST_ARCH_OS),linux) # omit netstat plugin on non-linux, requires wireless-tools dh_auto_configure -- --enable-man --with-plugins=netstatus,volume,volumealsa,cpu,deskno,batt,kbled,xkb,thermal,cpufreq,monitors,wnckpager else

