summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-02-18 10:14:46 +0100
committerThorsten Behrens <tbehrens@suse.com>2013-02-18 10:14:46 +0100
commitd27589108bbdc5d6362d458fb0eb1f53f7091806 (patch)
tree4417a92b21e8160080b9c4a3a57f13eb4387d3d4 /solenv
parent0dc319e2aa28844c3cea8b236b02a67561b76de2 (diff)
Add sal to doxygen docs, fix build order.
Change-Id: I9f06304f20b464b70fd6661c9ae1a0d21c84f273
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/mkdocs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/mkdocs.sh b/solenv/bin/mkdocs.sh
index b00f1e8bd3a3..ad72c6d42e26 100755
--- a/solenv/bin/mkdocs.sh
+++ b/solenv/bin/mkdocs.sh
@@ -116,7 +116,7 @@ shopt -s nullglob
DOXYGEN_PROJECT_PREFIX="LibreOffice"
# get list of modules in build order - bah, blows RAM & disk, static list below
-INPUT_PROJECTS="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="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"
# output directory for generated documentation
BASE_OUTPUT="$1"
@@ -155,7 +155,7 @@ umask 022
# generate docs
echo "generating doxygen docs"
DOXYGEN_REF_TAGFILES=""
-for PROJECT in `echo $INPUT_PROJECTS|tr ' ' '\n'|sort|tr '\n' ' '`;
+for PROJECT in $INPUT_PROJECTS;
do
# avoid processing of full project subdirs, only add source and inc
DOXYGEN_INPUT=`printf "%s" "$PROJECT/source $PROJECT/inc "`