[Lldb-commits] [lldb] r143323 - /lldb/trunk/test/Makefile

Peter Collingbourne peter at pcc.me.uk
Sun Oct 30 17:43:13 PDT 2011


Author: pcc
Date: Sun Oct 30 19:43:12 2011
New Revision: 143323

URL: http://llvm.org/viewvc/llvm-project?rev=143323&view=rev
Log:
When running tests, prepend our LibDir to the user's SHLIBPATH_VAR
instead of replacing it.

Modified:
    lldb/trunk/test/Makefile

Modified: lldb/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/Makefile?rev=143323&r1=143322&r2=143323&view=diff
==============================================================================
--- lldb/trunk/test/Makefile (original)
+++ lldb/trunk/test/Makefile Sun Oct 30 19:43:12 2011
@@ -32,5 +32,5 @@
 	rm -rf ../test-rdir
 	env PATH="$(ToolDir):$(PATH)" \
 	    PYTHONPATH=$(ToolDir) \
-	    $(SHLIBPATH_VAR)=$(LibDir) \
+	    $(SHLIBPATH_VAR)=$(LibDir):$($(SHLIBPATH_VAR)) \
 	     python $(PROJ_SRC_DIR)/dotest.py -i -v -r ../test-rdir





More information about the lldb-commits mailing list