From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BFC315ACFC for ; Thu, 27 Apr 2023 23:31:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C49AE0977; Thu, 27 Apr 2023 23:31:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61997E095C for ; Thu, 27 Apr 2023 23:31:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D17B33BDF5 for ; Thu, 27 Apr 2023 23:31:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6C9D1D for ; Thu, 27 Apr 2023 23:31:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1682638243.b52d57093c55162601160e4c6a46ec1f5467b99d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/game-music-emu/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/game-music-emu/game-music-emu-0.6.3.ebuild X-VCS-Directories: media-libs/game-music-emu/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b52d57093c55162601160e4c6a46ec1f5467b99d X-VCS-Branch: master Date: Thu, 27 Apr 2023 23:31:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d5e97af6-6905-4fae-b412-668f7f131699 X-Archives-Hash: 57bd6ee4328ba4e4b4e0f023bffe4b78 commit: b52d57093c55162601160e4c6a46ec1f5467b99d Author: Matoro Mahri users noreply github com> AuthorDate: Thu Apr 27 20:58:40 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 27 23:30:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b52d5709 media-libs/game-music-emu: fix mistake in additional paths Accidentally forgot to catch these in https://github.com/gentoo/gentoo/pull/30610 because I ran tests after already completing a successful emerge. Bug: https://bugs.gentoo.org/896118 Signed-off-by: Matoro Mahri users.noreply.github.com> Signed-off-by: Sam James gentoo.org> media-libs/game-music-emu/game-music-emu-0.6.3.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild b/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild index cffc088aaeea..85f4ecdcf91a 100644 --- a/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild +++ b/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild @@ -27,5 +27,8 @@ src_configure() { } multilib_src_test() { - emake -C "${S}/test" test LIBGME_NEW_PATH="${BUILD_DIR}/gme/libgme.so" CXXFLAGS="${CXXFLAGS}" + LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/gme" \ + emake -C "${S}/test" test \ + LIBGME_NEW_PATH="${BUILD_DIR}/gme/libgme.so" \ + CXXFLAGS="${CXXFLAGS}" LIBRARIES="${BUILD_DIR}/gme" }