[Pkg-nagios-changes] [pkg-nagios-plugins-contrib] 01/01: Fix HOST_ARCH detection for check_varnish and others.

Bernd Zeimetz bernd at bzed.de
Tue Jan 3 12:46:44 UTC 2017


This is an automated email from the git hooks/post-receive script.

bzed pushed a commit to branch master
in repository pkg-nagios-plugins-contrib.

commit 92fd6afa4c1e522c4f3644bfd8da67b292334b4b
Author: Bernd Zeimetz <bernd at bzed.de>
Date:   Tue Jan 3 13:46:10 2017 +0100

    Fix HOST_ARCH detection for check_varnish and others.
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index cb83ff2..24d2033 100644
--- a/Makefile
+++ b/Makefile
@@ -8,13 +8,13 @@ HOST_ARCH := $(strip $(shell rpm --eval '%{_arch}'))
 endif
 endif
 
-ifeq ($(HOST_ARCH),$(filter $(DEB_HOST_ARCH), hurd-i386))
+ifeq ($(HOST_ARCH),$(filter $(HOST_ARCH), hurd-i386))
 	PLUGINS := $(filter-out check_memcached check_varnish,$(PLUGINS))
 endif
-ifeq ($(HOST_ARCH),$(filter $(DEB_HOST_ARCH), arm64))
+ifeq ($(HOST_ARCH),$(filter $(HOST_ARCH), arm64))
 	PLUGINS := $(filter-out check_memcached,$(PLUGINS))
 endif
-ifeq ($(HOST_ARCH),$(filter $(DEB_HOST_ARCH), m68k))
+ifeq ($(HOST_ARCH),$(filter $(HOST_ARCH), m68k))
 	PLUGINS := $(filter-out check_varnish,$(PLUGINS))
 endif
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-nagios/pkg-nagios-plugins-contrib.git



More information about the Pkg-nagios-changes mailing list