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 BE774158091 for ; Thu, 16 Jun 2022 16:31:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B42C4E09C9; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9ED44E09C9 for ; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6EA0834211F for ; Thu, 16 Jun 2022 16:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F220517 for ; Thu, 16 Jun 2022 16:30:56 +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: <1655397036.acbc09a18b755395360cab7440de586f639bcbe9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-mixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild X-VCS-Directories: media-libs/sdl2-mixer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: acbc09a18b755395360cab7440de586f639bcbe9 X-VCS-Branch: master Date: Thu, 16 Jun 2022 16:30:56 +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: b257c291-d083-4b8e-86c9-1ee6b2d55900 X-Archives-Hash: 53fc4b81691167a48568c6d4b66a3a41 commit: acbc09a18b755395360cab7440de586f639bcbe9 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Wed Jun 8 20:06:17 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 16 16:30:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acbc09a1 media-libs/sdl2-mixer: fix unquoted variable EPREFIX Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Signed-off-by: Sam James gentoo.org> media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild | 4 ++-- media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild index 65363e58cfec..307f5ee53b3f 100644 --- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild +++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -92,7 +92,7 @@ multilib_src_configure() { $(use_enable mad music-mp3-mad-gpl) $(use_enable opus music-opus) --disable-music-opus-shared - LIBMIKMOD_CONFIG=${EPREFIX}/usr/bin/${CHOST}-libmikmod-config + LIBMIKMOD_CONFIG="${EPREFIX}"/usr/bin/${CHOST}-libmikmod-config ) ECONF_SOURCE=${S} econf "${myeconfargs[@]}" } diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild index 7f066768f34e..750b421f35d9 100644 --- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild +++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -91,7 +91,7 @@ multilib_src_configure() { $(use_enable mad music-mp3-mad-gpl) $(use_enable opus music-opus) --disable-music-opus-shared - LIBMIKMOD_CONFIG=${EPREFIX}/usr/bin/${CHOST}-libmikmod-config + LIBMIKMOD_CONFIG="${EPREFIX}"/usr/bin/${CHOST}-libmikmod-config ) ECONF_SOURCE=${S} econf "${myeconfargs[@]}" }