diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-11 01:33:57 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-11 01:33:57 +0000 |
commit | b94520e424bc6e348dcb380ff8285583bbb18a34 (patch) | |
tree | ad32ee3c1d933724b223053eafd21e4c9041c326 /source3/script | |
parent | 7668dc66190c0e04ab438b6d36e926a1aef6fc61 (diff) | |
download | samba-b94520e424bc6e348dcb380ff8285583bbb18a34.tar.gz samba-b94520e424bc6e348dcb380ff8285583bbb18a34.tar.bz2 samba-b94520e424bc6e348dcb380ff8285583bbb18a34.zip |
Makefile.in: Added target for makeyodldocs - not used by default.
rpc_client/cli_reg.c: The perils of cut-n-paste coding include using variables before
they are initialised :-).
script/makeyodldocs.sh: Remove the intermediate files.
Jeremy.
(This used to be commit 88031bca5c528157ef2fe1d976a245b186ff8959)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/makeyodldocs.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/script/makeyodldocs.sh b/source3/script/makeyodldocs.sh index ded7d69a6d..def0af345f 100755 --- a/source3/script/makeyodldocs.sh +++ b/source3/script/makeyodldocs.sh @@ -44,6 +44,7 @@ do exit 1 fi cp $bn.man ../manpages/$bn || echo "Cannot create $YODLDIR/../manpages/$bn" + rm -f $bn.man echo "Creating html versions of man pages..." echo $d @@ -54,6 +55,7 @@ do exit 1 fi cp $bn.html ../htmldocs || echo "Cannot create $YODLDIR/../htmldocs/$bn.html" + rm -f $bn.html ;; *) # @@ -67,6 +69,7 @@ do exit 1 fi cp $bn.html ../htmldocs || echo "Cannot create $YODLDIR/../htmldocs/$bn.html" + rm -f $bn.html ;; esac done |