diff options
Diffstat (limited to 'chrome/installer/linux')
-rwxr-xr-x | chrome/installer/linux/debian/build.sh | 6 | ||||
-rwxr-xr-x | chrome/installer/linux/rpm/build.sh | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/chrome/installer/linux/debian/build.sh b/chrome/installer/linux/debian/build.sh index d9d98a1..39e2153 100755 --- a/chrome/installer/linux/debian/build.sh +++ b/chrome/installer/linux/debian/build.sh @@ -288,14 +288,16 @@ fi rm -rf "$DUMMY_STAGING_DIR" # Additional dependencies not in the dpkg-shlibdeps output. -ADDITION_DEPS="ca-certificates, libcurl3, \ +# Pull a more recent version of NSS than required by runtime linking, for +# security and stability updates in NSS. +ADDITION_DEPS="ca-certificates, libcurl3, libnss3 (>= 3.14.3), \ lsb-base (>=3.2), xdg-utils (>= 1.0.2), wget" # Fix-up libnspr dependency due to renaming in Ubuntu (the old package still # exists, but it was moved to "universe" repository, which isn't installed by # default). DPKG_SHLIB_DEPS=$(sed \ - 's/\(libnspr4-0d ([^)]*)\), /\1 | libnspr4 (>= 4.8.7-0ubuntu1), /g' \ + 's/\(libnspr4-0d ([^)]*)\), /\1 | libnspr4 (>= 4.9.5-0ubuntu0), /g' \ <<< $DPKG_SHLIB_DEPS) # Fix-up libudev dependency because Ubuntu 13.04 has libudev1 instead of diff --git a/chrome/installer/linux/rpm/build.sh b/chrome/installer/linux/rpm/build.sh index 544a46a..7134e59 100755 --- a/chrome/installer/linux/rpm/build.sh +++ b/chrome/installer/linux/rpm/build.sh @@ -124,7 +124,7 @@ do_package() { # https://bugzilla.novell.com/show_bug.cgi?id=556248 DEPENDS="lsb >= 4.0, \ libcurl.so.4${EMPTY_VERSION}${PKG_ARCH}, \ - libnss3.so(NSS_3.12.3)${PKG_ARCH}, \ + libnss3.so(NSS_3.14.3)${PKG_ARCH}, \ wget, \ xdg-utils, \ zlib, \ |