| Index: build/linux/sysroot_scripts/sysroot-creator-trusty.sh
|
| diff --git a/build/linux/sysroot_scripts/sysroot-creator-trusty.sh b/build/linux/sysroot_scripts/sysroot-creator-trusty.sh
|
| index 3cbda13b8572218e8d17206bf6ecda343c326263..c21583b77129ff249b4b184614e54c97df7d8fe2 100755
|
| --- a/build/linux/sysroot_scripts/sysroot-creator-trusty.sh
|
| +++ b/build/linux/sysroot_scripts/sysroot-creator-trusty.sh
|
| @@ -1,4 +1,4 @@
|
| -#!/bin/sh
|
| +#!/bin/bash
|
| # Copyright 2014 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.
|
| @@ -12,8 +12,15 @@ DIST=trusty
|
| APT_REPO=http://archive.ubuntu.com/ubuntu
|
| APT_REPO_ARM=http://ports.ubuntu.com
|
| REPO_BASEDIR="${APT_REPO}/dists/${DIST}"
|
| +REPO_BASEDIR_ARM="${APT_REPO_ARM}/dists/${DIST}"
|
| +REPO_BASEDIR_ARM64="${APT_REPO_ARM}/dists/${DIST}"
|
| KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg
|
|
|
| +HAS_ARCH_AMD64=1
|
| +HAS_ARCH_I386=1
|
| +HAS_ARCH_ARM=1
|
| +HAS_ARCH_ARM64=1
|
| +
|
| # Sysroot packages: these are the packages needed to build chrome.
|
| # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated
|
| # by running this script in GeneratePackageList mode.
|
|
|