[libcxx-commits] [libcxxabi] df9301e - [libc++abi] Fix user prompt in cp-to-llvm.sh. (#114268)

via libcxx-commits libcxx-commits at lists.llvm.org
Thu Oct 31 08:37:06 PDT 2024


Author: Ryan Mansfield
Date: 2024-10-31T11:37:03-04:00
New Revision: df9301ed5831f4c9dd531cbc9dd0d54de3210419

URL: https://github.com/llvm/llvm-project/commit/df9301ed5831f4c9dd531cbc9dd0d54de3210419
DIFF: https://github.com/llvm/llvm-project/commit/df9301ed5831f4c9dd531cbc9dd0d54de3210419.diff

LOG: [libc++abi] Fix user prompt in cp-to-llvm.sh. (#114268)

User prompt wasn't listing the files to be copied.

Added: 
    

Modified: 
    libcxxabi/src/demangle/cp-to-llvm.sh

Removed: 
    


################################################################################
diff  --git a/libcxxabi/src/demangle/cp-to-llvm.sh b/libcxxabi/src/demangle/cp-to-llvm.sh
index cfe32c228e65d4..f8b3585a5fa377 100755
--- a/libcxxabi/src/demangle/cp-to-llvm.sh
+++ b/libcxxabi/src/demangle/cp-to-llvm.sh
@@ -18,7 +18,7 @@ if [[ ! -d "$LLVM_DEMANGLE_DIR" ]]; then
     exit 1
 fi
 
-read -p "This will overwrite the copies of $FILES in $LLVM_DEMANGLE_DIR; are you sure? [y/N]" -n 1 -r ANSWER
+read -p "This will overwrite the copies of $HDRS in $LLVM_DEMANGLE_DIR; are you sure? [y/N]" -n 1 -r ANSWER
 echo
 
 if [[ $ANSWER =~ ^[Yy]$ ]]; then


        


More information about the libcxx-commits mailing list