]> git.pld-linux.org Git - packages/chromium-browser.git/commitdiff
- --password-store=detect is default since 12.x
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 4 Dec 2011 14:06:50 +0000 (14:06 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  see https://code.google.com/p/chromium/wiki/LinuxPasswordStorage

Changed files:
    chromium-browser.sh -> 1.8

chromium-browser.sh

index b36ace8e6b0b15e4bbf416351e8d2ef5fc9f21b7..eddc6f769a718df389ec457fe36fdd19b7c827e4 100644 (file)
@@ -5,7 +5,6 @@
 # found in the LICENSE file.
 
 # 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"}
 
 # for to find xdg-settings
@@ -28,16 +27,15 @@ export CHROME_VERSION_EXTRA="PLD Linux"
 
 # Google Chrome has a number of command line switches which change the behavior of Chrome
 # This param allows you to set extra args for browser startup.
-# See source for possible choices:
-# http://git.chromium.org/gitweb/?p=chromium.git;f=chrome/common/chrome_switches.cc;hb=HEAD
-# Also: http://peter.sh/experiments/chromium-command-line-switches/
+# See: http://peter.sh/experiments/chromium-command-line-switches/
 CHROME_FLAGS_FILE="${XDG_CONFIG_HOME:-$HOME/.config}/chromium/Chrome Flags"
 if [ -f "$CHROME_FLAGS_FILE" ]; then
        # All lines starting with # are ignored
        CHROME_FLAGS=$(grep -v '^#' "$CHROME_FLAGS_FILE")
 fi
 
-# Google guys cannot properly handle coma, so download speed/est is shown
+# Google guys cannot properly handle comma, so download speed/est is shown
 # as not a number (NaN). Workaround that with LC_NUMERIC=C
+export LC_NUMERIC=C
 
-LC_NUMERIC=C exec @libdir@/chromium-browser --password-store=detect $CHROME_FLAGS "$@"
+exec @libdir@/chromium-browser $CHROME_FLAGS "$@"
This page took 0.04699 seconds and 4 git commands to generate.