Kaydet (Commit) 36e3331b authored tarafından Peter Foley's avatar Peter Foley

fix mkdocs.sh

Change-Id: Ia77605732bb5112a69289997db5d1c4a4b694594
üst 4f601291
...@@ -115,8 +115,8 @@ shopt -s nullglob ...@@ -115,8 +115,8 @@ shopt -s nullglob
# Title of the documentation # Title of the documentation
DOXYGEN_PROJECT_PREFIX="LibreOffice" DOXYGEN_PROJECT_PREFIX="LibreOffice"
# get list of modules in build order - bah, blows RAM & disk, static list below # get list of modules
INPUT_PROJECTS="sal o3tl basegfx basebmp basic comphelper svl vcl canvas cppcanvas oox svtools goodies drawinglayer xmloff slideshow sfx2 editeng svx writerfilter cui chart2 dbaccess sd starmath sc sw" INPUT_PROJECTS="`ls */Module_*.mk | sed 's#/.*##'`"
# output directory for generated documentation # output directory for generated documentation
BASE_OUTPUT="$1" BASE_OUTPUT="$1"
...@@ -134,7 +134,7 @@ if test ! -f "$DOXYGEN_CFG"; then ...@@ -134,7 +134,7 @@ if test ! -f "$DOXYGEN_CFG"; then
fi fi
# strip -I. and bin -I prefix; exlude system headers # strip -I. and bin -I prefix; exlude system headers
DOXYGEN_INCLUDE_PATH=`echo $SOLARINC | sed -e ' s/-I\.//'g | sed -e ' s/ -I/ /'g | sed -e ' s|/usr/[^ ]*| |g'` DOXYGEN_INCLUDE_PATH=`echo $SOLARINC | sed -e 's/-I\.//g' -e 's/ -I/ /'g -e 's/ -isystem/ /g' -e 's|/usr/[^ ]*| |g'`
# setup version string # setup version string
DOXYGEN_VERSION="master" DOXYGEN_VERSION="master"
...@@ -183,7 +183,7 @@ do ...@@ -183,7 +183,7 @@ do
echo "Ref-Tags: $DOXYGEN_REF_TAGFILES" echo "Ref-Tags: $DOXYGEN_REF_TAGFILES"
echo "Title: $DOXYGEN_PROJECTNAME" echo "Title: $DOXYGEN_PROJECTNAME"
nice -15 doxygen "$DOXYGEN_CFG" || exit 1 nice -15 doxygen "$DOXYGEN_CFG" >>$BASE_OUTPUT/doxygen.log || exit 1
# setup referenced tagfiles for next round # setup referenced tagfiles for next round
DOXYGEN_REF_TAGFILES="$DOXYGEN_REF_TAGFILES $DOXYGEN_OUR_TAGFILE=$BASE_URL/$PROJECT/html" DOXYGEN_REF_TAGFILES="$DOXYGEN_REF_TAGFILES $DOXYGEN_OUR_TAGFILE=$BASE_URL/$PROJECT/html"
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment