Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Revert r297516 - Respect CMAKE_INSTALL_MANDIR for sphinx generated ma…
Browse files Browse the repository at this point in the history
…npages

When CMAKE_INSTALL_MANDIR isn't defined it ends up attempting to install
the man pages under "/man1" and we really don't want to accidentally install
stuff at the filesystem root.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297545 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
EricWF committed Mar 11, 2017
1 parent f32502e commit e1e162e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/AddSphinxTarget.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function (add_sphinx_target builder project)
# FIXME: We might not ship all the tools that these man pages describe
install(DIRECTORY "${SPHINX_BUILD_DIR}/" # Slash indicates contents of
COMPONENT "${project}-sphinx-man"
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
DESTINATION share/man/man1)

elseif (builder STREQUAL html)
string(TOUPPER "${project}" project_upper)
Expand Down

0 comments on commit e1e162e

Please sign in to comment.