make it callable from any path

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2008-03-08 14:39:02 +00:00
parent 23324ae1c7
commit aa6ec1d787

View File

@ -6,6 +6,11 @@
# wxWidgets manual and adjusts the doxygen log to make it more
# readable.
me=$(basename $0)
path=${0%%/$me} # path from which the script has been launched
current=$(pwd)
cd $path
mkdir -p out/html # we need to copy files in this folder below
mkdir -p out/html/wxmsw out/html/wxgtk out/html/wxmac
@ -48,3 +53,4 @@ mv temp doxygen.log
#cat doxygen.log | grep -v ".*supplied.*as.*the.*argument.*is.*not.*an.*input.*file.*" >temp
#mv temp doxygen.log
cd $current