commit:     b78eb09276980c730532d4700b873ab87f888493
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  3 07:45:42 2025 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Wed Sep  3 07:45:42 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b78eb092

www-client/chromium: properly quote cross-compile path

In the "just keep appending strings" -> "use proper bash array"
conversion some of the quoting on GN args got mangled.

I thought I'd caught all of the places where quotes needed to be
fixed, but clearly I did not!

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 www-client/chromium/chromium-140.0.7339.80.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/chromium-140.0.7339.80.ebuild 
b/www-client/chromium/chromium-140.0.7339.80.ebuild
index 60da71fefcd4..e3ab830a6ce5 100644
--- a/www-client/chromium/chromium-140.0.7339.80.ebuild
+++ b/www-client/chromium/chromium-140.0.7339.80.ebuild
@@ -1068,8 +1068,8 @@ chromium_configure() {
                        myconf_gn+=(
                                
'host_toolchain="//build/toolchain/linux/unbundle:host"'
                                
'v8_snapshot_toolchain="//build/toolchain/linux/unbundle:host"'
-                               "host_pkg_config=$(tc-getBUILD_PKG_CONFIG)"
-                               "pkg_config=$(tc-getPKG_CONFIG)"
+                               "host_pkg_config=\"$(tc-getBUILD_PKG_CONFIG)\""
+                               "pkg_config=\"$(tc-getPKG_CONFIG)\""
                        )
 
                        # setup cups-config, build system only uses --libs 
option

Reply via email to