1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-28 05:50:30 +02:00

Fix dpkg --add-architecture invocation

This commit is contained in:
Andy Wingo 2019-05-16 12:08:22 +02:00
parent 926275e123
commit 826d5a95c3
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,8 @@
image: debian image: debian
before_script: before_script:
- dpkg --add-architecture i386 --add-architecture arm64 - dpkg --add-architecture i386
- dpkg --add-architecture arm64
- apt-get update -qq - apt-get update -qq
- apt-get install -y \ - apt-get install -y \
libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \ libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \

View file

@ -8,7 +8,8 @@ TARGETS=native ia32 aarch64
# #
# The relevant packages that you need to run this: # The relevant packages that you need to run this:
# #
# dpkg --add-architecture i386 --add-architecture arm64 # dpkg --add-architecture i386
# dpkg --add-architecture arm64
# apt-get update -qq # apt-get update -qq
# apt-get install -y \ # apt-get install -y \
# libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \ # libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \