diff options
author | Michel Dänzer <[email protected]> | 2019-09-06 09:47:59 +0200 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-09-11 17:00:43 +0000 |
commit | 3be7c67bbe3749bd69c39e8f94bfd4f45cfe4dc6 (patch) | |
tree | b3b7604bcf112066c5a01effddfd401bf95e04b4 /.gitlab-ci/debian-install.sh | |
parent | 4fdd455eeb7cffadee86f06c685005a3b64ce94b (diff) |
gitlab-ci: Explicitly install linux-libc-dev for foreign architectures
Something seems to have changed in Debian buster causing installation
of the other foreign packages to fail without this.
Reviewed-by: Jose Fonseca <[email protected]>
Reviewed-by: Adam Jackson <[email protected]>
Diffstat (limited to '.gitlab-ci/debian-install.sh')
-rw-r--r-- | .gitlab-ci/debian-install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index 0ccacd1a9d6..9b67f614e4a 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -88,6 +88,7 @@ for arch in $CROSS_ARCHITECTURES; do apt-get install -y \ libdrm-dev:${arch} \ libexpat1-dev:${arch} \ + linux-libc-dev:${arch}/stretch-backports \ libelf-dev:${arch} done apt-get install -y \ |