From de33eb17778be3dc63c595e88dc3d2400e479a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Fri, 30 Mar 2018 09:51:02 +0200 Subject: main/xz: add explicit LD_LIBRARY_PATH for "make check" Without this, the tests in "make check" can't find libzma.so, if it isn't installed, such as when running "abuild rootbld" or bootstrapping a system where xz hasn't been built/installed yet. --- main/xz/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/xz/APKBUILD b/main/xz/APKBUILD index a4a8b47df4..e83f0f1bb1 100644 --- a/main/xz/APKBUILD +++ b/main/xz/APKBUILD @@ -35,7 +35,7 @@ build() { check() { cd "$builddir" - make check + LD_LIBRARY_PATH="$(pwd)/src/liblzma/.libs" make check } package() { -- cgit v1.2.3