summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-10-15 12:29:47 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-10-15 12:31:00 +0200
commit761b7e39ebbcd8398c2f67fcead5199285b1cbdc (patch)
tree4f60de004af88b62eda70d306551434a17f6bfbb
parent33a43d55e6ec5db047dee076589b147fc5126d9d (diff)
mkdocs: sort module list
-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 1e358e64cf56..5cc3d42912b1 100755
--- a/solenv/bin/mkdocs.sh
+++ b/solenv/bin/mkdocs.sh
@@ -64,7 +64,7 @@ umask 022
# generate docs
DOXYGEN_REF_TAGFILES=""
-for PROJECT in $INPUT_PROJECTS;
+for PROJECT in `echo $INPUT_PROJECTS|tr ' ' '\n'|sort|tr '\n' ' '`;
do
# avoid processing of full project subdirs, only add source and inc
DOXYGEN_INPUT=`printf "%s" "$PROJECT/source $PROJECT/inc "`