aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/mirror-dev.sh
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2017-11-09 16:47:13 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-09 22:44:57 +0000
commit22499b0969ac8650fa1349f2dbb4e4964a2286b9 (patch)
tree9ab09ec3edcb41a0603d7139da3ac8a7f8c3f0b5 /tools/mirror-dev.sh
parent66918078bb373e28e381cab51409e789fe521315 (diff)
Update mirror-dev for *-dev:amd64 packages.
Some dev packages in debian have been updated to multiarch, but not all. Deal with this transitional issue, since there are multiarch dev packages which cannot actually be installed because they depend on other not yet multi-arch packages. Change-Id: I3881c82cef8d6004d8bac0c18e9c34ce0808dc1a Reviewed-on: https://skia-review.googlesource.com/69701 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'tools/mirror-dev.sh')
-rwxr-xr-xtools/mirror-dev.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mirror-dev.sh b/tools/mirror-dev.sh
index eb948f4417..47786de2bc 100755
--- a/tools/mirror-dev.sh
+++ b/tools/mirror-dev.sh
@@ -3,7 +3,7 @@
# found in the LICENSE file.
# For each installed *-dev package DEV
- for DEV in $(dpkg --list | grep '^ii [^ ]' | cut -d ' ' -f 3 | grep '\-dev$')
+ for DEV in $(dpkg --list | grep '^ii [^ ]' | cut -d ' ' -f 3 | grep -P '\-dev($|\:amd64$)')
do
# For each multi-arch *.so SO installed by DEV
for DEV_64_SO in $(dpkg -L $DEV | grep '/lib/x86_64-linux-gnu/.*\.so$')