summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BuildParams2
-rwxr-xr-xbuild.sh9
2 files changed, 8 insertions, 3 deletions
diff --git a/BuildParams b/BuildParams
index 3f5d6f8c6b..ae423dd1a8 100644
--- a/BuildParams
+++ b/BuildParams
@@ -147,7 +147,9 @@ oz_viewer-devreview.email = oz@lindenlab.com
oz_project-1.build_debug_release_separately = true
oz_project-1.codeticket_add_context = false
+oz_project-1_Linux.build_docs = true
oz_project-1.email = oz@lindenlab.com
+
oz_project-2.build_debug_release_separately = true
oz_project-2.codeticket_add_context = false
oz_project-2.email = oz@lindenlab.com
diff --git a/build.sh b/build.sh
index c7c89fe3c2..c949d00166 100755
--- a/build.sh
+++ b/build.sh
@@ -90,9 +90,12 @@ build()
build_docs()
{
begin_section Docs
- # Stub code to generate docs
- echo Hello world > documentation.txt
- upload_item docs documentation.txt text/plain
+ if "$AUTOBUILD" build -c Doxygen
+ then
+ echo true >"$build_dir"/build_ok
+ else
+ echo false >"$build_dir"/build_ok
+ fi
end_section Docs
}