Fix /proc check on systems that have hardened system

This commit is contained in:
Klaus Ethgen 2015-10-28 00:44:42 +01:00 committed by Jan Wagner
parent 3fd4e78b3b
commit 52ead1a6f8

2
debian/rules vendored
View file

@ -69,7 +69,7 @@ config.status: configure
# if /proc is not mounted, check_nagios and check_procs are
# silently omitted from build.
@if ! [ -d /proc/1 ]; then \
@if ! [ -d /proc/$$$$ ]; then \
echo "monitoring-plugins needs a mounted /proc to correctly build"; \
exit 1; \
fi