mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-12 05:59:26 +02:00
Correct the qemu download URLs
It seems that wiki.qemu-project.org is not available anymore and downloads are now on download.qemu.org.
This commit is contained in:
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE riscv32-unknown-linux-gnu
|
||||
WORKDIR /usr/src
|
||||
|
||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||
cd qemu-${QEMU_VERSION} && \
|
||||
./configure --target-list=riscv32-linux-user --prefix=/usr && \
|
||||
make -j$(nproc) && \
|
||||
|
Reference in New Issue
Block a user