From 9d64972f7771c737548c63176e4dcabcafc217f9 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 23 Apr 2019 12:31:23 +0200 Subject: [PATCH] Chromium: fix for start remove popup of gnome-keyring --- chromium-72.0.3626.121-0.build.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/chromium-72.0.3626.121-0.build.sh b/chromium-72.0.3626.121-0.build.sh index 4f3e57f..d793707 100755 --- a/chromium-72.0.3626.121-0.build.sh +++ b/chromium-72.0.3626.121-0.build.sh @@ -86,7 +86,7 @@ export PATH=${BUILDDIR}/${PKG}-${VERSION}/third_party/llvm-build/Release+Asserts _chromium_conf=( 'is_debug=false' 'remove_webcore_debug_symbols=true' - 'use_gnome_keyring=true' + 'use_gnome_keyring=true' 'treat_warnings_as_errors=false' 'enable_nacl=true' 'use_sysroot=true' @@ -104,4 +104,12 @@ strip $PREFIX/bin/chrome strip $PREFIX/bin/*.so rm $PREFIX/bin/*.TOC +cat >$PREFIX/chromium <<-EOF + #!/usr/bin/bash + $PREFIX/chrome2 --password-store=basic \${@} +EOF +cd $PREFIX +mv chrome chrome2 +ln -s chromium chrome + exit