Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ctl/
Date: Sun, 09 Jan 2022 21:32:54
Message-Id: 1641763956.2c31229ae1b294e5fe10c6fe88e042db7c639764.asturm@gentoo
1 commit: 2c31229ae1b294e5fe10c6fe88e042db7c639764
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 9 19:50:38 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 9 21:32:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c31229a
7
8 media-libs/ctl: Fix unquoted var
9
10 Bug: https://bugs.gentoo.org/814107
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-libs/ctl/ctl-1.5.2-r2.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/media-libs/ctl/ctl-1.5.2-r2.ebuild b/media-libs/ctl/ctl-1.5.2-r2.ebuild
18 index 45d613f9e712..f545786ec060 100644
19 --- a/media-libs/ctl/ctl-1.5.2-r2.ebuild
20 +++ b/media-libs/ctl/ctl-1.5.2-r2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -35,7 +35,7 @@ PATCHES=(
28 mycmakeargs=( -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" )
29
30 src_test() {
31 - pushd ${BUILD_DIR} >/dev/null || die
32 + pushd "${BUILD_DIR}" >/dev/null || die
33 eninja check
34 popd >/dev/null || die
35 }