Silence dpkg-query errors in install-build-deps.

On leading-edge Ubuntu versions there are no LTS backport packages, and
dpkg-query prints an error about nothing matching the wildcard to
stderr, which has caused at least one user to think the script didn't
install mesa correctly. The script handles this case just fine, though
(it expands to an empty array and sets mesa_variant to emptystring,
whcih is correct), so just redirect stderr to avoid this spurious error
message.

BUG=

Review URL: https://codereview.chromium.org/1721763003

Cr-Commit-Position: refs/heads/master@{#377332}
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index c0d8d99..04f6e59 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -182,7 +182,7 @@
 # be more than one with the same name in the case of multiarch). Expand into an
 # array.
 mesa_packages=($(dpkg-query -Wf'${package} ${status}\n' \
-                            libgl1-mesa-glx-lts-\* | \
+                            libgl1-mesa-glx-lts-\* 2>/dev/null | \
                  grep " ok installed" | cut -d " " -f 1 | sort -u))
 if [ "${#mesa_packages[@]}" -eq 0 ]; then
   mesa_variant=""