diff options
author | Sam James <sam@gentoo.org> | 2021-03-15 11:38:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-15 11:39:08 +0000 |
commit | 6ddf200d6670ca82f7397bb898aa35ba1137c259 (patch) | |
tree | 17b6be7f5da6435096fa398828641daeff45f1c9 /app-doc/doxygen | |
parent | dev-python/pypy3: Add a note about .pyc magic (diff) | |
download | gentoo-6ddf200d6670ca82f7397bb898aa35ba1137c259.tar.gz gentoo-6ddf200d6670ca82f7397bb898aa35ba1137c259.tar.bz2 gentoo-6ddf200d6670ca82f7397bb898aa35ba1137c259.zip |
app-doc/doxygen: fix USE=doc build
* Build source code first, as per upstream
* Use -j1 when building docs to avoid strange race condition
Closes: https://bugs.gentoo.org/770070
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-doc/doxygen')
-rw-r--r-- | app-doc/doxygen/doxygen-1.9.1.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app-doc/doxygen/doxygen-1.9.1.ebuild b/app-doc/doxygen/doxygen-1.9.1.ebuild index 98132f677430..2b2dd947144a 100644 --- a/app-doc/doxygen/doxygen-1.9.1.ebuild +++ b/app-doc/doxygen/doxygen-1.9.1.ebuild @@ -117,6 +117,8 @@ src_configure() { } src_compile() { + cmake_src_compile + if use doc; then export VARTEXFONTS="${T}/fonts" # bug #564944 @@ -126,10 +128,9 @@ src_compile() { || die "disabling dot failed" fi - cmake_src_compile docs + # -j1 for bug #770070 + cmake_src_compile docs -j1 fi - - cmake_src_compile } src_install() { |