summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-28 11:11:48 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-28 06:55:14 +0200
commit49eb192b35879bb20829c3a6744d1d22be67fe2f (patch)
tree8bd8c33efef2da1722d203cd69744c5958d0f46c /solenv
parent45511d939750345335ba840f2364b567f1a76c42 (diff)
solenv: include all global headers needed by the sal module
The sal module is a bit of a special case in that it actually takes headers from three locations: include/sal/, include/osl/ and include/rtl. We need to cater for this in the mkdocs.sh script. Change-Id: I846dbfe948d86a6ad719bba263165ac251dbf9bc Reviewed-on: https://gerrit.libreoffice.org/38099 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/mkdocs.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/solenv/bin/mkdocs.sh b/solenv/bin/mkdocs.sh
index 8f627525203f..7aa1010dd227 100755
--- a/solenv/bin/mkdocs.sh
+++ b/solenv/bin/mkdocs.sh
@@ -185,6 +185,9 @@ do
if [ -d "include/$PROJECT" ]; then
PROJECT_INCLUDE="$PROJECT_INCLUDE include/$PROJECT"
+ if [ "$PROJECT" = "sal" ]; then
+ PROJECT_INCLUDE="$PROJECT_INCLUDE include/osl include/rtl"
+ fi
fi
DOXYGEN_INPUT=`printf "%s" "$PROJECT/source $PROJECT_INCLUDE"`