[libc-commits] [PATCH] D112476: [libc][NFC] Remove extra slash in path in libc/CMakeLists.txt

Joe Loser via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Oct 25 11:34:36 PDT 2021


jloser created this revision.
jloser added reviewers: MaskRay, abrachet.
Herald added subscribers: libc-commits, ecnelises, tschuett, mgorny.
Herald added a project: libc-project.
jloser requested review of this revision.

Remove extra `/` in path to match the include filepath from the previous
line.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D112476

Files:
  libc/CMakeLists.txt


Index: libc/CMakeLists.txt
===================================================================
--- libc/CMakeLists.txt
+++ libc/CMakeLists.txt
@@ -95,7 +95,7 @@
 if(EXISTS "${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/${LIBC_TARGET_ARCHITECTURE}/headers.txt")
   include("${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/${LIBC_TARGET_ARCHITECTURE}/headers.txt")
 elseif(EXISTS "${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/headers.txt")
-  include("${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}//headers.txt")
+  include("${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/headers.txt")
 endif()
 
 set(TARGET_ENTRYPOINT_NAME_LIST "")


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112476.382072.patch
Type: text/x-patch
Size: 620 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20211025/357c7262/attachment.bin>


More information about the libc-commits mailing list