[llvm] [llvm][.gitignore] macOS case-sensitive update (PR #177971)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 26 06:54:54 PST 2026
https://github.com/tmjbios created https://github.com/llvm/llvm-project/pull/177971
If you run macOS on a case-sensitive file system,
.DS_store and .DS_Store are different files and the existing lowercase-s version doesn't match. Fix that.
>From 95e4ddf1101275b6e92c49c82a8a09407ef7f9db Mon Sep 17 00:00:00 2001
From: "Ted M. Johnson" <tedmjohnson at protonmail.com>
Date: Mon, 26 Jan 2026 07:52:13 -0700
Subject: [PATCH] [llvm][.gitignore] macOS case-sensitive update
If you run macOS on a case-sensitive file system,
.DS_store and .DS_Store are different files and the existing
lowercase-s version doesn't match. Fix that.
---
.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitignore b/.gitignore
index 85b5caa162124..2cf396b1d6c0d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,6 +22,8 @@
.sw?
#OS X specific files.
.DS_store
+#macOS case-sensitive version of above
+.DS_Store
# Ignore the user specified CMake presets in subproject directories.
/*/CMakeUserPresets.json
More information about the llvm-commits
mailing list