summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2017-02-10 21:08:03 +0000
committerJames Le Cuirot <chewi@gentoo.org>2017-02-10 21:08:03 +0000
commit7bf40172be33bdc065a2dfbd85838cf39f0eda51 (patch)
treeab223417e1db38d3473ec6daabf80448158edeea /app-crypt/rhash
parentsci-chemistry/mm-align: EAPI 6 (diff)
downloadgentoo-7bf40172be33bdc065a2dfbd85838cf39f0eda51.tar.gz
gentoo-7bf40172be33bdc065a2dfbd85838cf39f0eda51.tar.bz2
gentoo-7bf40172be33bdc065a2dfbd85838cf39f0eda51.zip
app-crypt/rhash: Fix tests to use the newly built library
It was using the installed copy and breaking for new installs. Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-crypt/rhash')
-rw-r--r--app-crypt/rhash/rhash-1.3.4.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/app-crypt/rhash/rhash-1.3.4.ebuild b/app-crypt/rhash/rhash-1.3.4.ebuild
index cd33ea8d75a7..b10475a3a1d8 100644
--- a/app-crypt/rhash/rhash-1.3.4.ebuild
+++ b/app-crypt/rhash/rhash-1.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -63,5 +63,5 @@ multilib_src_install_all() {
multilib_src_test() {
cd tests || die
- ./test_rhash.sh --full ../rhash_shared || die "tests failed"
+ LD_LIBRARY_PATH=$(pwd)/../librhash ./test_rhash.sh --full ../rhash_shared || die "tests failed"
}