Skip to content

Commit 8fe634f

Browse files
berrangeMichael Tokarev
authored andcommitted
dockerfiles: add 'MAKE' env variable to remaining containers
All the lcitool generated containers define a "MAKE" env. It will be convenient for later patches if all containers do this. Signed-off-by: Daniel P. Berrangé <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Message-ID: <[email protected]> Signed-off-by: Thomas Huth <[email protected]> (cherry picked from commit bad7a27) Signed-off-by: Michael Tokarev <[email protected]>
1 parent fd4afd5 commit 8fe634f

7 files changed

+7
-0
lines changed

tests/docker/dockerfiles/debian-all-test-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ RUN DEBIAN_FRONTEND=noninteractive eatmydata \
6868
ENV QEMU_CONFIGURE_OPTS --disable-system --disable-docs --disable-tools
6969
ENV DEF_TARGET_LIST aarch64-linux-user,arm-linux-user,hppa-linux-user,i386-linux-user,m68k-linux-user,mips-linux-user,mips64-linux-user,mips64el-linux-user,mipsel-linux-user,ppc-linux-user,ppc64-linux-user,ppc64le-linux-user,riscv64-linux-user,s390x-linux-user,sparc64-linux-user
7070
# As a final step configure the user (if env is defined)
71+
ENV MAKE /usr/bin/make
7172
ARG USER
7273
ARG UID
7374
RUN if [ "${USER}" ]; then \

tests/docker/dockerfiles/debian-hexagon-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
4545

4646
RUN curl -#SL "$TOOLCHAIN_URL" | tar -xJC "$TOOLCHAIN_INSTALL"
4747
ENV PATH $PATH:${TOOLCHAIN_INSTALL}/${TOOLCHAIN_BASENAME}/x86_64-linux-gnu/bin
48+
ENV MAKE /usr/bin/make
4849
# As a final step configure the user (if env is defined)
4950
ARG USER
5051
ARG UID

tests/docker/dockerfiles/debian-legacy-test-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ RUN /usr/bin/pip3 install tomli
4242

4343
ENV QEMU_CONFIGURE_OPTS --disable-system --disable-docs --disable-tools
4444
ENV DEF_TARGET_LIST alpha-linux-user,sh4-linux-user
45+
ENV MAKE /usr/bin/make
4546
# As a final step configure the user (if env is defined)
4647
ARG USER
4748
ARG UID

tests/docker/dockerfiles/debian-loongarch-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ ENV LD_LIBRARY_PATH /opt/cross-tools/lib:/opt/cross-tools/loongarch64-unknown-li
4444

4545
ENV QEMU_CONFIGURE_OPTS --disable-system --disable-docs --disable-tools
4646
ENV DEF_TARGET_LIST loongarch64-linux-user,loongarch-softmmu
47+
ENV MAKE /usr/bin/make
4748

4849
# As a final step configure the user (if env is defined)
4950
ARG USER

tests/docker/dockerfiles/debian-tricore-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ RUN curl -#SL https://github.com/bkoppelmann/package_940/releases/download/trico
4444
# This image can only build a very minimal QEMU as well as the tests
4545
ENV DEF_TARGET_LIST tricore-softmmu
4646
ENV QEMU_CONFIGURE_OPTS --disable-user --disable-tools --disable-fdt
47+
ENV MAKE /usr/bin/make
4748
# As a final step configure the user (if env is defined)
4849
ARG USER
4950
ARG UID

tests/docker/dockerfiles/debian-xtensa-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ RUN for cpu in $CPU_LIST; do \
2727
done
2828

2929
ENV PATH $PATH:/opt/$TOOLCHAIN_RELEASE/xtensa-dc232b-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-dc233c-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-de233_fpu-elf/bin:/opt/$TOOLCHAIN_RELEASE/xtensa-dsp3400-elf/bin
30+
ENV MAKE /usr/bin/make
3031
# As a final step configure the user (if env is defined)
3132
ARG USER
3233
ARG UID

tests/docker/dockerfiles/fedora-cris-cross.docker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
FROM registry.fedoraproject.org/fedora:33
66
ENV PACKAGES gcc-cris-linux-gnu
7+
ENV MAKE /usr/bin/make
78
RUN dnf install -y $PACKAGES
89
RUN rpm -q $PACKAGES | sort > /packages.txt
910
# As a final step configure the user (if env is defined)

0 commit comments

Comments
 (0)