Fix typo in hurd plugin rules

This commit is contained in:
Alf Gaida 2015-12-29 17:41:30 +01:00
parent 6508730be3
commit ad69b0c838
2 changed files with 8 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
lxqt-panel (0.10.0-7) unstable; urgency=medium
* Fix typo in hurd plugin rules
-- Alf Gaida <agaida@siduction.org> Mon, 28 Dec 2015 18:57:15 +0100
lxqt-panel (0.10.0-6) unstable; urgency=medium
* different handling of non-linux-os:

4
debian/rules vendored
View File

@ -5,11 +5,11 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
ifeq ($(DEB_HOST_ARCH_OS), kfreebsd)
NOT_LINUX := -DCPULOAD_PLUGIN=NO -DNETWORKMONITOR_PLUGIN=NO -DVOLUME_PLUGIN=NO
endif
ifeq ($(DEB_HOST_AECH_OS), hurd)
ifeq ($(DEB_HOST_ARCH_OS), hurd)
NOT_LINUX := -DCPULOAD_PLUGIN=NO -DNETWORKMONITOR_PLUGIN=NO -DVOLUME_PLUGIN=NO -DSENSORS_PLUGIN=NO
endif