]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Fix doxygen generation to work with relative paths
authorJonathan Wakely <jwakely@redhat.com>
Tue, 19 Oct 2021 15:00:13 +0000 (16:00 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 19 Oct 2021 15:40:48 +0000 (16:40 +0100)
In r12-826 I tried to remove some redundant steps from the doxygen
build, but they are needed when configure is run as a relative path. The
use of pwd is to resolve the relative path to an absolute one.

libstdc++-v3/ChangeLog:

* doc/Makefile.am (stamp-html-doxygen, stamp-html-doxygen)
(stamp-latex-doxygen, stamp-man-doxygen): Fix recipes for
relative ${top_srcdir}.
* doc/Makefile.in: Regenerate.

(cherry picked from commit 04d392e8430ca66a3f12b7db4f3cb84788269a48)

libstdc++-v3/doc/Makefile.am
libstdc++-v3/doc/Makefile.in

index 487e8621b2300da4da3fcab55089d3e4166d24d7..0aacf3f27dec54190ce055361896db49ebdfebd5 100644 (file)
@@ -226,10 +226,11 @@ ${doxygen_outdir}/man:
        mkdir -p ${doxygen_outdir}/man
 
 stamp-xml-doxygen: ${doxygen_outdir}/xml
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=xml \
-         "${top_srcdir}" "$${builddir}" NO || true
+         "$${srcdir}" "$${builddir}" NO
        $(STAMP) stamp-xml-doxygen
 
 stamp-xml-single-doxygen: stamp-xml-doxygen
@@ -239,17 +240,19 @@ stamp-xml-single-doxygen: stamp-xml-doxygen
        $(STAMP) stamp-xml-single-doxygen
 
 stamp-html-doxygen: ${doxygen_outdir}/html
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=html \
-         "${top_srcdir}" "$${builddir}" YES || true
+         "$${srcdir}" "$${builddir}" YES
        $(STAMP) stamp-html-doxygen
 
 stamp-latex-doxygen: ${doxygen_outdir}/latex
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=latex --latex_cmd=$(LATEX_CMD) \
-         "${top_srcdir}" "$${builddir}" NO || true
+         "$${srcdir}" "$${builddir}" NO
        $(STAMP) stamp-latex-doxygen
 
 # Chance of loooooonnggg creation time on this rule.  Iff this fails,
@@ -274,10 +277,11 @@ stamp-pdf-doxygen: stamp-latex-doxygen ${doxygen_outdir}/pdf
        $(STAMP) stamp-pdf-doxygen
 
 stamp-man-doxygen: ${doxygen_outdir}/man
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=man \
-         "${top_srcdir}" "$${builddir}" YES || true
+         "$${srcdir}" "$${builddir}" YES
        $(STAMP) stamp-man-doxygen
 
 doc-xml-doxygen: stamp-xml-doxygen
index fe1113eda34ecd26f233754b139be5e11e543a19..bfb3ce7ffdf90f0279bca639fc220516ec6cd54b 100644 (file)
@@ -917,10 +917,11 @@ ${doxygen_outdir}/man:
        mkdir -p ${doxygen_outdir}/man
 
 stamp-xml-doxygen: ${doxygen_outdir}/xml
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=xml \
-         "${top_srcdir}" "$${builddir}" NO || true
+         "$${srcdir}" "$${builddir}" NO
        $(STAMP) stamp-xml-doxygen
 
 stamp-xml-single-doxygen: stamp-xml-doxygen
@@ -930,17 +931,19 @@ stamp-xml-single-doxygen: stamp-xml-doxygen
        $(STAMP) stamp-xml-single-doxygen
 
 stamp-html-doxygen: ${doxygen_outdir}/html
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=html \
-         "${top_srcdir}" "$${builddir}" YES || true
+         "$${srcdir}" "$${builddir}" YES
        $(STAMP) stamp-html-doxygen
 
 stamp-latex-doxygen: ${doxygen_outdir}/latex
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=latex --latex_cmd=$(LATEX_CMD) \
-         "${top_srcdir}" "$${builddir}" NO || true
+         "$${srcdir}" "$${builddir}" NO
        $(STAMP) stamp-latex-doxygen
 
 # Chance of loooooonnggg creation time on this rule.  Iff this fails,
@@ -965,10 +968,11 @@ stamp-pdf-doxygen: stamp-latex-doxygen ${doxygen_outdir}/pdf
        $(STAMP) stamp-pdf-doxygen
 
 stamp-man-doxygen: ${doxygen_outdir}/man
-       @builddir=`cd ..; ${PWD_COMMAND}`; \
+       -srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
+         builddir=`cd ..; ${PWD_COMMAND}`; \
          ${SHELL} ${doxygen_script} \
          --host_alias=${host_alias} --mode=man \
-         "${top_srcdir}" "$${builddir}" YES || true
+         "$${srcdir}" "$${builddir}" YES
        $(STAMP) stamp-man-doxygen
 
 doc-xml-doxygen: stamp-xml-doxygen