diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-10-29 05:07:12 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-10-29 05:07:12 +0000 |
commit | 15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86 (patch) | |
tree | a80353ceaea4d5405bfa49cb0e8731057589b59d /lldb/scripts/Python/finish-swig-Python-LLDB.sh | |
parent | f2f194455fba1308f30545c6dce4854f207f83b3 (diff) | |
download | bcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.tar.gz bcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.zip |
Rename argdumper to lldb-argdumper
http://reviews.llvm.org/D14169
llvm-svn: 251616
Diffstat (limited to 'lldb/scripts/Python/finish-swig-Python-LLDB.sh')
-rwxr-xr-x | lldb/scripts/Python/finish-swig-Python-LLDB.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/scripts/Python/finish-swig-Python-LLDB.sh b/lldb/scripts/Python/finish-swig-Python-LLDB.sh index eb8ec11d9da..92b99181c7c 100755 --- a/lldb/scripts/Python/finish-swig-Python-LLDB.sh +++ b/lldb/scripts/Python/finish-swig-Python-LLDB.sh @@ -188,23 +188,23 @@ then fi fi -# Make symlink for argdumper on any platform +# Make symlink for lldb-argdumper on any platform if [ $MakefileCalled -ne 0 ] then # We are being built by CMake - if [ ! -L "${framework_python_dir}/argdumper" ] + if [ ! -L "${framework_python_dir}/lldb-argdumper" ] then if [ $Debug -eq 1 ] then - echo "Creating symlink for argdumper" + echo "Creating symlink for lldb-argdumper" fi cd "${framework_python_dir}" - ln -s "../../../../bin/argdumper" argdumper + ln -s "../../../../bin/lldb-argdumper" lldb-argdumper else if [ $Debug -eq 1 ] then - echo "${framework_python_dir}/argdumper already exists." + echo "${framework_python_dir}/lldb-argdumper already exists." fi fi fi |