summaryrefslogtreecommitdiff
path: root/libcxxabi
diff options
context:
space:
mode:
Diffstat (limited to 'libcxxabi')
-rwxr-xr-xlibcxxabi/src/demangle/cp-to-llvm.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/libcxxabi/src/demangle/cp-to-llvm.sh b/libcxxabi/src/demangle/cp-to-llvm.sh
index f773dff9f0a8..9c1db6fec29a 100755
--- a/libcxxabi/src/demangle/cp-to-llvm.sh
+++ b/libcxxabi/src/demangle/cp-to-llvm.sh
@@ -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|[^-]*||')
@@ -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