From c96687a165a6e970e71c7f3ccb8e4bf83258d6e3 Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com> Date: Wed, 18 May 2016 23:58:33 +0900 Subject: [PATCH] [glossary] Remove unnecessary glossary build script At now, we have the RST glossary, so don't need to build it. It is needed to build the glossary from DocBook glossary. Change-Id: If5bfee749121e6c121bf63f9027626675de8b9ae --- tools/build-install-guides-rst.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tools/build-install-guides-rst.sh b/tools/build-install-guides-rst.sh index 684aa01a64..c338ddace7 100755 --- a/tools/build-install-guides-rst.sh +++ b/tools/build-install-guides-rst.sh @@ -23,11 +23,6 @@ cp -f ${INDEX} ${INDEX}.save trap "mv -f ${INDEX}.save ${INDEX}" EXIT for tag in $TAGS; do - GLOSSARY="" - if [[ ! -e doc/common/glossary.rst ]] ; then - GLOSSARY="--glossary" - fi - ## # Because Sphinx uses the first heading as title regardless of # only directive, replace title directive with the proper title @@ -64,9 +59,8 @@ for tag in $TAGS; do fi # Build the guide - tools/build-rst.sh doc/install-guide \ - $GLOSSARY --tag ${tag} --target "draft/install-guide-${tag}" \ - $LINKCHECK + tools/build-rst.sh doc/install-guide \ + --tag ${tag} --target "draft/install-guide-${tag}" $LINKCHECK # Restore the index file cp -f ${INDEX}.save ${INDEX}