From 5630d997b4df7b475940411f3ce3d1358654402f Mon Sep 17 00:00:00 2001 From: Denis Pynkin <denis.pynkin@collabora.com> Date: Thu, 11 Oct 2018 12:59:27 +0300 Subject: [PATCH] Allow to use libraries Some binaries need to be copied with shared libraries. Export LD_LIBRARY_PATH variable allows to put and use needed libraries from `$TESTDIR/$ARCH/lib` directory. Signed-off-by: Denis Pynkin <denis.pynkin@collabora.com> --- update-test-path | 1 + 1 file changed, 1 insertion(+) diff --git a/update-test-path b/update-test-path index 1766cbb..61174ff 100644 --- a/update-test-path +++ b/update-test-path @@ -12,4 +12,5 @@ aarch64) ARCHDIR=arm64 ;; esac PATH=${TESTPATH}/${ARCHDIR}/bin:$PATH +export LD_LIBRARY_PATH=${TESTPATH}/${ARCHDIR}/lib:$LD_LIBRARY_PATH -- GitLab