From 885294808a1314d632f9df00a997e9d5bddb05d9 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 11 Apr 2012 17:04:00 +0000 Subject: [PATCH] Get rid of absolute path in "process load" command. llvm-svn: 154506 --- lldb/examples/darwin/heap_find/heap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/examples/darwin/heap_find/heap.py b/lldb/examples/darwin/heap_find/heap.py index e5405da201b3..0793e95f5857 100644 --- a/lldb/examples/darwin/heap_find/heap.py +++ b/lldb/examples/darwin/heap_find/heap.py @@ -122,7 +122,7 @@ if __name__ == '__main__': def __lldb_init_module (debugger, dict): # This initializer is being run from LLDB in the embedded command interpreter # Add any commands contained in this module to LLDB - debugger.HandleCommand('process load /Volumes/work/gclayton/Documents/src/lldb/examples/darwin/heap_find/libheap.dylib') + debugger.HandleCommand('process load libheap.dylib') debugger.HandleCommand('command script add -f heap.heap_search heap_search') print '"heap_search" command installed, type "heap_search --help" for detailed help'