diff options
author | Martin Liska <mliska@suse.cz> | 2022-11-13 15:07:17 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-11-13 16:35:25 +0100 |
commit | 5e749ee3019d7917184af30dab8d09c933c0a4a1 (patch) | |
tree | e9207c2dd1ed6ba302b091d10084b99841d21b16 /libgomp | |
parent | 9a265c974cd85b8eae5ea607185e689f063db4a1 (diff) | |
download | gcc-5e749ee3019d7917184af30dab8d09c933c0a4a1.zip gcc-5e749ee3019d7917184af30dab8d09c933c0a4a1.tar.gz gcc-5e749ee3019d7917184af30dab8d09c933c0a4a1.tar.bz2 |
configure: always set SPHINX_BUILD
During the Sphinx-migration development, I used
SPHINX_BUILD='' in order to skip building info and manual
pages in gcc folder. However, we've got HAS_SPHINX_BUILD
which is the correct flag for that.
With the patch, one will get a nicer error message when
sphinx-build is missing and one builds (explicitly) a target which
depends on it.
PR other/107620
gcc/ChangeLog:
* configure: Regenerate.
* configure.ac: Always set sphinx-build.
libgomp/ChangeLog:
* configure: Regenerate.
* configure.ac: Always set sphinx-build.
libiberty/ChangeLog:
* configure: Regenerate.
* configure.ac: Always set sphinx-build.
libitm/ChangeLog:
* configure: Regenerate.
* configure.ac: Always set sphinx-build.
libquadmath/ChangeLog:
* configure: Regenerate.
* configure.ac: Always set sphinx-build.
Diffstat (limited to 'libgomp')
-rwxr-xr-x | libgomp/configure | 2 | ||||
-rw-r--r-- | libgomp/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libgomp/configure b/libgomp/configure index c018cb9..ac3acda 100755 --- a/libgomp/configure +++ b/libgomp/configure @@ -16916,7 +16916,7 @@ $as_echo "$as_me: WARNING: *** Info and man pages documentation will not be built." >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - SPHINX_BUILD= + SPHINX_BUILD=sphinx-build HAS_SPHINX_BUILD= fi rm -rf $tempdir diff --git a/libgomp/configure.ac b/libgomp/configure.ac index 1aeac2d..6e8300a 100644 --- a/libgomp/configure.ac +++ b/libgomp/configure.ac @@ -499,7 +499,7 @@ else *** sphinx-build is missing or too old. *** Info and man pages documentation will not be built.]) AC_MSG_RESULT(no) - SPHINX_BUILD= + SPHINX_BUILD=sphinx-build HAS_SPHINX_BUILD= fi rm -rf $tempdir |