From 964b64f161088237d06ef50d8b6538b18c85cff0 Mon Sep 17 00:00:00 2001 From: James Abbatiello Date: Wed, 26 Feb 2025 15:38:12 -0500 Subject: [PATCH] Don't set $MANPATH The man pages aren't built anymore since https://github.com/cfengine/core/pull/715 . The directory /var/cfengine/share/man does not exist as part of the package so it does not make sense to refer to it. --- packaging/cfengine-community/profile.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packaging/cfengine-community/profile.sh b/packaging/cfengine-community/profile.sh index 985c2715a..517bab280 100644 --- a/packaging/cfengine-community/profile.sh +++ b/packaging/cfengine-community/profile.sh @@ -1,7 +1,3 @@ if ! echo ${PATH} | /bin/grep /var/cfengine/bin > /dev/null ; then export PATH=$PATH:/var/cfengine/bin fi - -if ! echo ${MANPATH} | /bin/grep /var/cfengine/share/man > /dev/null ; then - export MANPATH=$MANPATH:/var/cfengine/share/man -fi