summaryrefslogtreecommitdiffstats
path: root/doc/do_docs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-26 20:44:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-26 20:44:35 +0000
commit54fc6fe8e88bf429491c1ab3c2301fd86c7662b2 (patch)
tree480d81240567cca151826d635231f9e3bbf9bef3 /doc/do_docs
parentAdded support for easily building different sets of the manuals (diff)
downloadrtems-54fc6fe8e88bf429491c1ab3c2301fd86c7662b2.tar.bz2
The script did not handle public distributions at all.
Diffstat (limited to 'doc/do_docs')
-rwxr-xr-xdoc/do_docs9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/do_docs b/doc/do_docs
index 531081eba9..0f0a08a514 100755
--- a/doc/do_docs
+++ b/doc/do_docs
@@ -15,7 +15,14 @@ extra_manuals="hwapi"
# posix_users manual left out until finished
# ada_user manual left out until bindings released
+if [ x${MANUAL_SET} = x ] ; then
+ MANUAL_SET=public
+fi
+
case ${MANUAL_SET} in
+ public)
+ manuals="$public_docs"
+ ;;
support)
manuals="$public_docs $support_docs"
;;
@@ -26,7 +33,7 @@ case ${MANUAL_SET} in
manuals="$public_docs $support_docs $partners_docs $extra_manuals"
;;
*)
- echo "ERROR: Unknown manual set $(MANUAL_SET)"
+ echo "ERROR: Unknown manual set ${MANUAL_SET}"
exit 1
;;
esac