From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-930498-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CF275139694 for <garchives@archives.gentoo.org>; Fri, 10 Feb 2017 21:11:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29D1AE0D3E; Fri, 10 Feb 2017 21:11:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A3CCE0D3E for <gentoo-commits@lists.gentoo.org>; Fri, 10 Feb 2017 21:11:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81EFE3415D2 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Feb 2017 21:11:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D70994351 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Feb 2017 21:11:28 +0000 (UTC) From: "James Le Cuirot" <chewi@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" <chewi@gentoo.org> Message-ID: <1486760883.7bf40172be33bdc065a2dfbd85838cf39f0eda51.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/rhash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/rhash/rhash-1.3.4.ebuild X-VCS-Directories: app-crypt/rhash/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 7bf40172be33bdc065a2dfbd85838cf39f0eda51 X-VCS-Branch: master Date: Fri, 10 Feb 2017 21:11:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 18c5b730-ab97-4a24-851a-346dfc0fae91 X-Archives-Hash: d8d4a1200785c2234dc7dd671af138f9 commit: 7bf40172be33bdc065a2dfbd85838cf39f0eda51 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org> AuthorDate: Fri Feb 10 21:08:03 2017 +0000 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org> CommitDate: Fri Feb 10 21:08:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bf40172 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 app-crypt/rhash/rhash-1.3.4.ebuild | 4 ++-- 1 file 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 cd33ea8d75..b10475a3a1 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" }