summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-01-27 13:08:27 +1100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-01-27 02:12:13 +0000
commit39026305e25d3b010e95a0dfa3ae9ca4f1319e98 (patch)
tree13647ca4e89a23862c4003b3924072a91426b721 /solenv
parent06e9730b0347ef6c9dffea9508d7139c230a3e92 (diff)
Fix include path error in mkdocs.sh introduced in 247cd3381745
Unfortunately in commit 247cd33817457789645827a52d79a1876b9760a3 I mistakenly included the directories wrongly. This fixes this. Change-Id: I91193321d1264985eab4865ca05adeab96401b2f Reviewed-on: https://gerrit.libreoffice.org/7669 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/mkdocs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/mkdocs.sh b/solenv/bin/mkdocs.sh
index 93f502f0d863..888521be0801 100755
--- a/solenv/bin/mkdocs.sh
+++ b/solenv/bin/mkdocs.sh
@@ -164,7 +164,7 @@ do
fi
if [ -d "include/$PROJECT" ]; then
- PROJECT_INCLUDE="$PROJECT_INCLUDE $PROJECT_INCLUDE"
+ PROJECT_INCLUDE="$PROJECT_INCLUDE include/$PROJECT"
fi
DOXYGEN_INPUT=`printf "%s" "$PROJECT/source $PROJECT_INCLUDE"`