From dc9010572c1d32a4e1c82afbee2a359c429cc9aa Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Mar 2010 23:41:15 +1100 Subject: build: support systems without rpath --- source4/selftest/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4') diff --git a/source4/selftest/wscript b/source4/selftest/wscript index 4fea799ecf..858d92a9aa 100644 --- a/source4/selftest/wscript +++ b/source4/selftest/wscript @@ -67,6 +67,9 @@ def cmd_testonly(opt): if Options.options.VALGRIND_SERVER: os.environ['SAMBA_VALGRIND'] = 'xterm -n server -e ../selftest/valgrind_run A=B ' + # this is needed for systems without rpath, or with rpath disabled + os.environ['LD_LIBRARY_PATH'] = 'bin/shared' + st_done = 'st/st_done' if os.path.exists(st_done): os.unlink(st_done) -- cgit