From e9e8417735fa973a02278bed544f71dd36724333 Mon Sep 17 00:00:00 2001 From: Tim Bielawa Date: Tue, 17 Apr 2012 10:53:32 -0400 Subject: [PATCH] Update hacking with MANPATH. Correct hacking README details. --- hacking/README | 3 --- hacking/env-setup | 7 +++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hacking/README b/hacking/README index dd7abbd4fed..c3772269cdb 100644 --- a/hacking/README +++ b/hacking/README @@ -6,6 +6,3 @@ To use it from the root of a checkout: $ . ./hacking/env-setup Note the space between the '.' and the './' - -Man pages will not load until you run 'make docs' from the root of the -checkout. diff --git a/hacking/env-setup b/hacking/env-setup index 2802730b312..b153862a940 100755 --- a/hacking/env-setup +++ b/hacking/env-setup @@ -4,14 +4,17 @@ PREFIX_PYTHONPATH="$PWD/lib" PREFIX_PATH="$PWD/bin" +PREFIX_MANPATH="$PWD/docs/man" export PYTHONPATH=$PREFIX_PYTHONPATH:$PYTHONPATH export PATH=$PREFIX_PATH:$PATH export ANSIBLE_LIBRARY="$PWD/library" +export MANPATH=$PREFIX_MANPATH:$MANPATH echo "PATH=$PATH" echo "PYTHONPATH=$PYTHONPATH" echo "ANSIBLE_LIBRARY=$ANSIBLE_LIBRARY" +echo "MANPATH=$MANPATH" -echo "reminder: specify your host file with -i" -echo "done." +echo "Reminder: specify your host file with -i" +echo "Done."