From a973354bf6d93c229a7f0491add2b7bcbd102fb6 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 20 Dec 2002 06:34:25 +0000 Subject: [PATCH] fixed a path problem git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18368 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/distrib/makedocs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wxPython/distrib/makedocs b/wxPython/distrib/makedocs index eb1a8a2082..f158caa190 100755 --- a/wxPython/distrib/makedocs +++ b/wxPython/distrib/makedocs @@ -17,8 +17,8 @@ fi DEST=wxPython-$1/docs -mkdir -p _distrib_bld/$DEST -cd _distrib_bld +mkdir -p _build_docs/$DEST +cd _build_docs mkdir $DEST/wx mkdir $DEST/ogl @@ -36,18 +36,18 @@ cp $DEST/ogl/ogl.htm $DEST/ogl/index.htm # **** zip the docs into "books" -cd $DEST -cd wx +pushd $DEST +pushd wx zip ../wx.zip * -cd .. +popd rm -r wx -cd ogl +pushd ogl zip ../ogl.zip * -cd .. +popd rm -r ogl -cd .. +popd cp ../distrib/viewdocs.py $DEST cp ../distrib/README.viewdocs.txt $DEST/README.txt @@ -58,6 +58,6 @@ gzip -9 ../dist/wxPythonDocs-$1.tar # **** Cleanup cd .. -rm -r _distrib_bld +rm -r _build_docs