]> gcc.gnu.org Git - gcc.git/commitdiff
maintainer-scripts: Add Modula-2 manual to update_web_docs_git
authorGaius Mulley <gaiusmod2@gmail.com>
Thu, 16 Mar 2023 23:08:20 +0000 (00:08 +0100)
committerGerald Pfeifer <gerald@pfeifer.com>
Thu, 16 Mar 2023 23:11:48 +0000 (00:11 +0100)
maintainer-scripts/ChangeLog:

* update_web_docs_git (MANUALS): Add gm2.
Add include path for gm2 manual.

maintainer-scripts/update_web_docs_git

index 1c6a993cafdf1f359ad2044cb2154e8f182c1bbf..4bb4897bf35f65c8b706a0f8430839ad28dab227 100755 (executable)
@@ -24,6 +24,7 @@ MANUALS="cpp
   gdc
   gfortran
   gfc-internals
+  gm2
   gnat_ugn
   gnat-style
   gnat_rm
@@ -167,7 +168,10 @@ for file in $MANUALS; do
   filename=`find . -name ${file}.texi`
   if [ "${filename}" ]; then
     includes="-I ${includedir} -I `dirname ${filename}`"
-    if [ "$file" = "gnat_ugn" ]; then
+    if [ "$file" = "gm2" ]; then
+      includes="$includes -I gcc/gcc/m2/target-independent"
+      includes="$includes -I gcc/gcc/m2/target-independent/m2"
+    elif [ "$file" = "gnat_ugn" ]; then
       includes="$includes -I gcc/gcc/ada -I gcc/gcc/ada/doc/gnat_ugn"
     fi
     makeinfo --html --css-ref $CSS $includes -o ${file} ${filename}
This page took 0.061928 seconds and 5 git commands to generate.