diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-03-30 09:51:02 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-03-31 15:46:29 +0200 |
commit | de33eb17778be3dc63c595e88dc3d2400e479a4f (patch) | |
tree | c48e08fab982e0040c8f1919437e77902b8477a1 | |
parent | 844428dcfe525cf2ff6dab480e687d9edf9071da (diff) | |
download | aports-de33eb17778be3dc63c595e88dc3d2400e479a4f.tar.bz2 aports-de33eb17778be3dc63c595e88dc3d2400e479a4f.tar.xz |
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.
-rw-r--r-- | main/xz/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |