[libc-commits] [libc] fece981 - [libc] Attempt to fix incorrect pathin on Linux builds
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Sun Jan 7 11:40:19 PST 2024
Author: Joseph Huber
Date: 2024-01-07T13:40:10-06:00
New Revision: fece9818abce9339e3a46ce174c662602e32d593
URL: https://github.com/llvm/llvm-project/commit/fece9818abce9339e3a46ce174c662602e32d593
DIFF: https://github.com/llvm/llvm-project/commit/fece9818abce9339e3a46ce174c662602e32d593.diff
LOG: [libc] Attempt to fix incorrect pathin on Linux builds
Added:
Modified:
libc/include/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/include/CMakeLists.txt b/libc/include/CMakeLists.txt
index c93693cfc11f84..2c2d1b9b0fd155 100644
--- a/libc/include/CMakeLists.txt
+++ b/libc/include/CMakeLists.txt
@@ -189,10 +189,10 @@ if(EXISTS "${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/signal.h.in")
signal
DEF_FILE signal.h.def
PARAMS
- platform_signal=${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/signal.h.in
+ platform_signal=../config/${LIBC_TARGET_OS}/signal.h.in
GEN_HDR signal.h
DATA_FILES
- ${LIBC_SOURCE_DIR}/config/${LIBC_TARGET_OS}/signal.h.in
+ ../config/${LIBC_TARGET_OS}/signal.h.in
DEPENDS
.llvm-libc-macros.signal_macros
.llvm-libc-types.sig_atomic_t
More information about the libc-commits
mailing list