Skip to content

Commit 7f08ecd

Browse files
committed
Fixed issue with Read the Docs.
1 parent 0bf5f7d commit 7f08ecd

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

docs/sphinx/buildGuide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ For reference two more complicated specs are shown below
195195
This will use ``[email protected]`` and ``[email protected]`` to build and install RAJA v0.12.1 without examples or exercises, Umpire v4.0.1 without examples, the master branch of CHAI without benchmarks or examples, and caliper v2.4 without a bunch of options. Finally it will build and install LvArray after running the unit tests and verifying that they pass. Note that each package that depends on cuda gets the ``cuda_arch=70`` variable.
196196

197197
::
198-
quartz2498 > ./scripts/uberenv/uberenv.py --spec="@tribol+umpire+chai %[email protected] ^[email protected] build_type=Release ^[email protected] build_type=Release"
198+
quartz2498 > ./scripts/uberenv/uberenv.py --spec="@tribol+umpire %[email protected] ^[email protected] build_type=Release ^[email protected] build_type=Release"
199199

200200
This will use ``[email protected]`` to build and install RAJA V0.12.1 in release and Umpire v4.0.1 in release. Finally it will generate a host config that can be used to build LvArray.

docs/sphinx/conf.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737

3838
doxyfile_src = os.path.join(docs_path, "Doxyfile.in")
3939
doxyfile_dst = os.path.join(build_path, "Doxyfile")
40-
config_src = os.path.join(docs_path, "LvArrayConfig.hpp")
41-
config_dst = os.path.join(src_path, "LvArrayConfig.hpp")
4240

4341
input_dirs = [src_path]
4442

@@ -49,10 +47,6 @@
4947
f.write("\nOUTPUT_DIRECTORY = %s/doxygen" % html_path)
5048
f.write("\nHAVE_DOT = YES")
5149

52-
# Make a symlink to LvArrayConfig.hpp in common
53-
if not os.path.exists(config_dst):
54-
os.symlink(config_src, config_dst)
55-
5650
# Call doxygen
5751
from subprocess import call
5852
call(['doxygen', doxyfile_dst])

0 commit comments

Comments
 (0)