https://github.com/chelcassanova created 
https://github.com/llvm/llvm-project/pull/153052

The original version of the framework fixup script is no longer being used and 
should be able to be removed.

>From 8324a738ff47cc7dbe30e6cd4c03c193c6aaaa0a Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova <chelsea_cassan...@apple.com>
Date: Mon, 11 Aug 2025 10:08:06 -0700
Subject: [PATCH] [lldb][framework] Remove original framework fixup script

The original version of the framework fixup script is no longer being
used and should be able to be removed.
---
 lldb/scripts/framework-header-fix.sh | 11 -----------
 1 file changed, 11 deletions(-)
 delete mode 100755 lldb/scripts/framework-header-fix.sh

diff --git a/lldb/scripts/framework-header-fix.sh 
b/lldb/scripts/framework-header-fix.sh
deleted file mode 100755
index 345579c80cdf5..0000000000000
--- a/lldb/scripts/framework-header-fix.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-# Usage: framework-header-fix.sh <source header dir> <LLDB Version>
-
-set -e
-
-for file in `find $1 -name "*.h"`
-do
-  /usr/bin/sed -i.bak 's/\(#include\)[ ]*"lldb\/\(API\/\)\{0,1\}\(.*\)"/\1 
<LLDB\/\3>/1' "$file"
-  /usr/bin/sed -i.bak 's|<LLDB/Utility|<LLDB|' "$file"
-  rm -f "$file.bak"
-done

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to