[lldb][framework] Remove original framework fixup script (#153052)

The original version of the framework fixup script is no longer being
used and should be able to be removed.
This commit is contained in:
Chelsea Cassanova 2025-08-11 11:56:03 -07:00 committed by GitHub
parent f0471bca0b
commit 9815210db7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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