Skip to content

Commit

Permalink
doxygen: Fix breakage from RobotLocomotion#9615 (removal of executabl…
Browse files Browse the repository at this point in the history
…e bits)
  • Loading branch information
EricCousineau-TRI committed Oct 24, 2018
1 parent 374e524 commit 195f189
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc/doxygen.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,14 @@ def _run_doxygen(args):
# Create Doxyfile_CXX.
in_filename = os.path.join(drake_workspace, "doc/Doxyfile_CXX.in")
doxyfile = os.path.join(binary_dir, "Doxyfile_CXX")
# N.B. If we executed `cmake_configure_file.py` under `bazel-bin`, it would
# require that users do some form of `bazel build`, which would require an
# explicit change to the doxygen building workflow.
# TODO(eric.cousineau): Try to wrap at least bits of this in Bazel to
# minimize this constraint.
subprocess.check_call(
[os.path.join(
[sys.executable,
os.path.join(
drake_workspace, "tools/workspace/cmake_configure_file.py"),
"--input", in_filename,
"--output", doxyfile,
Expand Down

0 comments on commit 195f189

Please sign in to comment.