Rename directory housing clang-change-namespace to be eponymous

Makes the name of this directory consistent with the names of the other
directories in clang-tools-extra.

Differential Revision: https://reviews.llvm.org/D59382

llvm-svn: 356254
This commit is contained in:
Nico Weber 2019-03-15 11:54:01 +00:00
parent 398f9bb434
commit 5f5a74582f
14 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ add_subdirectory(modularize)
add_subdirectory(clang-tidy)
add_subdirectory(clang-tidy-vs)
add_subdirectory(change-namespace)
add_subdirectory(clang-change-namespace)
add_subdirectory(clang-doc)
add_subdirectory(clang-query)
add_subdirectory(clang-move)

View File

@ -14,8 +14,8 @@ if(CLANG_BUILT_STANDALONE)
endif()
endif()
add_subdirectory(change-namespace)
add_subdirectory(clang-apply-replacements)
add_subdirectory(clang-change-namespace)
add_subdirectory(clang-doc)
add_subdirectory(clang-move)
add_subdirectory(clang-query)

View File

@ -3,7 +3,7 @@ set(LLVM_LINK_COMPONENTS
)
get_filename_component(CHANGE_NAMESPACE_SOURCE_DIR
${CMAKE_CURRENT_SOURCE_DIR}/../../change-namespace REALPATH)
${CMAKE_CURRENT_SOURCE_DIR}/../../clang-change-namespace REALPATH)
include_directories(
${CHANGE_NAMESPACE_SOURCE_DIR}
)