| Index: remoting/host/installer/linux/build-deb.sh
|
| diff --git a/remoting/host/installer/linux/build-deb.sh b/remoting/host/installer/linux/build-deb.sh
|
| index 951d935dc514998fca1342a75e1fc269392e6903..165a852521aad2a48dde533425293ea6d6c068b8 100755
|
| --- a/remoting/host/installer/linux/build-deb.sh
|
| +++ b/remoting/host/installer/linux/build-deb.sh
|
| @@ -7,7 +7,14 @@
|
| SCRIPTDIR="$(dirname "$(readlink -f "$0")")"
|
| PACKAGE="chrome-remote-desktop"
|
| ARCHITECTURE=$(dpkg-architecture | awk -F '=' '/DEB_BUILD_ARCH=/{print $2}')
|
| -REPOCONFIG="deb http://dl.google.com/linux/chrome-remote-desktop/deb/ stable main"
|
| +
|
| +# These settings are copied from chrome/installer/linux/debian/build.sh .
|
| +BASEREPOCONFIG="dl.google.com/linux/chrome-remote-desktop/deb/ stable main"
|
| +REPOCONFIG="deb [arch=${ARCHITECTURE}] http://${BASEREPOCONFIG}}"
|
| +# Allowed configs include optional HTTPS support and explicit multiarch
|
| +# platforms.
|
| +REPOCONFIGREGEX="deb (\\\\[arch=[^]]*\\\\b${ARCHITECTURE}\\\\b[^]]*\\\\]"
|
| +REPOCONFIGREGEX+="[[:space:]]*) https?://${BASEREPOCONFIG}"
|
|
|
| source ${SCRIPTDIR}/../../../../chrome/installer/linux/common/installer.include
|
|
|
|
|