From 2db833d5f1d6ecf7ee1c0d30437a2bdaa95c3fff Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 21 Dec 2000 23:27:51 +0000 Subject: If extra arguments passed make yodl docs for these files rather than *.yo (This used to be commit b57fbcca06c7a69863f69628745f8fcbc13419bd) --- source3/script/makeyodldocs.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/script/makeyodldocs.sh b/source3/script/makeyodldocs.sh index d0abaab7ae..5b54df033e 100755 --- a/source3/script/makeyodldocs.sh +++ b/source3/script/makeyodldocs.sh @@ -1,5 +1,11 @@ -#!/bin/sh -v +#!/bin/sh SRCDIR=$1 +shift +FILES=$@ + +if test -z $FILES; then + FILES=*.yo +fi YODLDIR=$SRCDIR/../docs/yodldocs MANPAGEDIR=$SRCDIR/../docs/manpages @@ -24,7 +30,7 @@ fi cd $YODLDIR -for d in *.yo +for d in $FILES do # -- cgit