Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 12 Sep 2022 19:14:40
Message-Id: 1663010070.32ceeb850e9bcdf992fe6442b0dbcf9b6dff6021.arthurzam@gentoo
1 commit: 32ceeb850e9bcdf992fe6442b0dbcf9b6dff6021
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 11:46:43 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 12 19:14:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ceeb85
7
8 gstreamer-meson.eclass: fix UnquotedVariable of BUILD_DIR
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 eclass/gstreamer-meson.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/gstreamer-meson.eclass b/eclass/gstreamer-meson.eclass
16 index f8ca343b0ca6..28afaa1e6a62 100644
17 --- a/eclass/gstreamer-meson.eclass
18 +++ b/eclass/gstreamer-meson.eclass
19 @@ -393,7 +393,7 @@ gstreamer_multilib_src_compile() {
20
21 # https://github.com/ninja-build/ninja/issues/1251
22 # https://github.com/ninja-build/ninja/issues/1330
23 - build_dir=$(readlink -f ${BUILD_DIR})
24 + build_dir=$(readlink -f "${BUILD_DIR}")
25
26 plugin_path="${plugin%%:*}"
27 eninja "${plugin_path/"${build_dir}/"/}"