From c25a9f4122e0f9d3d54aa92932bdaf6e6f1b5c74 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 27 Jun 2005 13:20:12 +0000 Subject: r7944: BUG 2808: don't try to install manpages if they are not present (This used to be commit 1ce5cc2a5f3da7ef6874cae5b433c139d68589c6) --- source3/script/installman.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source3/script/installman.sh b/source3/script/installman.sh index d30429d50a..5564ac0231 100755 --- a/source3/script/installman.sh +++ b/source3/script/installman.sh @@ -13,6 +13,10 @@ if [ $# -ge 4 ] ; then GROFF=$4 # sh cmd line, including options fi +if test ! -d docs/manpages; then + echo "No manpages present. SVN development version maybe?" + exit 0 +fi for lang in $langs; do if [ "X$lang" = XC ]; then -- cgit