[Libreoffice-commits] core.git: solenv/bin

Chris Sherlock chris.sherlock79 at gmail.com
Sun May 28 04:55:38 UTC 2017


 solenv/bin/mkdocs.sh |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 49eb192b35879bb20829c3a6744d1d22be67fe2f
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Sun May 28 11:11:48 2017 +1000

    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 at gmail.com>
    Tested-by: Chris Sherlock <chris.sherlock79 at gmail.com>

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"`


More information about the Libreoffice-commits mailing list