diff options
author | Davide Pesavento <pesa@gentoo.org> | 2016-01-20 16:46:06 +0100 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2016-02-02 19:35:07 +0100 |
commit | c7da64f9f51154616c452733673bc4247a08efec (patch) | |
tree | 91b226f309575b65de7484a4173c96255ea6945f /eclass | |
parent | qt5-build.eclass: disable gbm backend by default (diff) | |
download | gentoo-c7da64f9f51154616c452733673bc4247a08efec.tar.gz gentoo-c7da64f9f51154616c452733673bc4247a08efec.tar.bz2 gentoo-c7da64f9f51154616c452733673bc4247a08efec.zip |
qt5-build.eclass: don't bother exporting DYLD_LIBRARY_PATH for tests
We don't support Gentoo Prefix anywhere else in the eclass.
(cherry picked from proj/qt commit dd2818af8e7fe12a3afca273c4c42f73403ad2ee)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 381ae898432a..12aef9cef4dc 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -226,12 +226,11 @@ qt5-build_src_test() { qt5_foreach_target_subdir emake # create a custom testrunner script that correctly sets - # {,DY}LD_LIBRARY_PATH before executing the given test + # LD_LIBRARY_PATH before executing the given test local testrunner=${QT5_BUILD_DIR}/gentoo-testrunner cat > "${testrunner}" <<-_EOF_ || die #!/bin/sh export LD_LIBRARY_PATH="${QT5_BUILD_DIR}/lib:${QT5_LIBDIR}" - export DYLD_LIBRARY_PATH="${QT5_BUILD_DIR}/lib:${QT5_LIBDIR}" "\$@" _EOF_ chmod +x "${testrunner}" |