Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions libcxxabi/src/demangle/cp-to-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ copy_files() {
chmod -w $dst/README.txt

for I in $hdrs ; do
echo "Copying ${src}/$I to ${dst}/$I"
rm -f $dst/$I
dash=$(echo "$I---------------------------" | cut -c -27 |\
sed 's|[^-]*||')
Expand All @@ -53,6 +54,6 @@ copy_files() {
}

if [[ $ANSWER =~ ^[Yy]$ ]]; then
copy_files . $LLVM_DEMANGLE_DIR $HDRS
copy_files ../../test $LLVM_TESTING_DIR $TEST_HDRS
copy_files . $LLVM_DEMANGLE_DIR "${HDRS}"
copy_files ../../test $LLVM_TESTING_DIR "${TEST_HDRS}"
fi
Loading