]> git.pld-linux.org Git - packages/google-chrome.git/blobdiff - google-chrome.sh
- Minor bump to 118.0.5993.88.
[packages/google-chrome.git] / google-chrome.sh
old mode 100644 (file)
new mode 100755 (executable)
index 8b69c6a..8d1e1c0
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
 
 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+# Let the wrapped binary know that it has been run through the wrapper.
+export CHROME_WRAPPER=$(readlink -f "$0")
+
 # Always use our ffmpeg libs.
 # Also symlinks for nss/nspr libs can be found from our dir.
 export LD_LIBRARY_PATH=@libdir@${LD_LIBRARY_PATH:+:"$LD_LIBRARY_PATH"}
@@ -11,7 +14,18 @@ export LD_LIBRARY_PATH=@libdir@${LD_LIBRARY_PATH:+:"$LD_LIBRARY_PATH"}
 # for to find xdg-settings
 export PATH=@libdir@${PATH:+:"$PATH"}
 
-# chromium needs /dev/shm being mounted
+export CHROME_VERSION_EXTRA="RPM_STATE"
+
+# We don't want bug-buddy intercepting our crashes. http://crbug.com/24120
+export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME
+
+# Sanitize std{in,out,err} because they'll be shared with untrusted child
+# processes (http://crbug.com/376567).
+exec < /dev/null
+exec > >(exec cat)
+exec 2> >(exec cat >&2)
+
+# chrome needs /dev/shm being mounted
 m=$(awk '$2 == "/dev/shm" && $3 == "tmpfs" {print}' /proc/mounts)
 if [ -z "$m" ]; then
        cat >&2 <<-'EOF'
@@ -23,4 +37,4 @@ if [ -z "$m" ]; then
        EOF
 fi
 
-exec @libdir@/chrome "$@"
+exec -a "$0" @libdir@/chrome "$@"
This page took 0.033002 seconds and 4 git commands to generate.