summaryrefslogtreecommitdiff
path: root/devel/llvm37/files/patch-svn-283188
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2017-04-01 13:29:14 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2017-04-01 13:29:14 +0000
commitaef5472d832fb0e83e624316fe1d2ab45ddf315d (patch)
tree5dd7a5d10ff5e646cbcbf5c84cdc3931873bd35c /devel/llvm37/files/patch-svn-283188
parentRemove files/patch-armv6-hf-support since armv6hf no longer exists as (diff)
Actually remove llvm37 and clang37
Reported by: jbeich Pointy hat to: bapt
Notes
Notes: svn path=/head/; revision=437436
Diffstat (limited to 'devel/llvm37/files/patch-svn-283188')
-rw-r--r--devel/llvm37/files/patch-svn-28318826
1 files changed, 0 insertions, 26 deletions
diff --git a/devel/llvm37/files/patch-svn-283188 b/devel/llvm37/files/patch-svn-283188
deleted file mode 100644
index 43f29670192b..000000000000
--- a/devel/llvm37/files/patch-svn-283188
+++ /dev/null
@@ -1,26 +0,0 @@
-------------------------------------------------------------------------
-r283188 | mgorny | 2016-10-04 06:09:14 +0000 (Tue, 04 Oct 2016) | 9 lines
-
-[cmake] Use separate doctrees to prevent races between Sphinx instances
-
-Use separate doctrees between different Sphinx builders in order to
-prevent race condition issues due to multiple Sphinx instances accessing
-the same doctree cache in parallel.
-
-Bug: https://llvm.org/bugs/show_bug.cgi?id=23781
-
-Differential Revision: https://reviews.llvm.org/D23755
-------------------------------------------------------------------------
-Index: cmake/modules/AddSphinxTarget.cmake
-===================================================================
---- cmake/modules/AddSphinxTarget.cmake (revision 283187)
-+++ cmake/modules/AddSphinxTarget.cmake (revision 283188)
-@@ -6,7 +6,7 @@
- # ``project`` should be the project name
- function (add_sphinx_target builder project)
- set(SPHINX_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/${builder}")
-- set(SPHINX_DOC_TREE_DIR "${CMAKE_CURRENT_BINARY_DIR}/_doctrees")
-+ set(SPHINX_DOC_TREE_DIR "${CMAKE_CURRENT_BINARY_DIR}/_doctrees-${builder}")
- set(SPHINX_TARGET_NAME docs-${project}-${builder})
-
- if (SPHINX_WARNINGS_AS_ERRORS)