From b0ff304461b1f2cdffa6685082528e9176e79f1e Mon Sep 17 00:00:00 2001 From: Jose Carlos Venegas Munoz Date: Wed, 15 Aug 2018 16:51:27 -0500 Subject: [PATCH] static: qemu: point prefix variable to /opt/kata. We want all the static qemu is intalled in /opt/kata use PREFIX variable to notify to configure script. Signed-off-by: Jose Carlos Venegas Munoz --- static-build/qemu/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static-build/qemu/Dockerfile b/static-build/qemu/Dockerfile index 687f21b940..cf9610a66b 100644 --- a/static-build/qemu/Dockerfile +++ b/static-build/qemu/Dockerfile @@ -39,7 +39,9 @@ RUN git clone https://github.com/qemu/keycodemapdb.git ui/keycodemapdb ADD configure-hypervisor.sh /root/configure-hypervisor.sh -RUN /root/configure-hypervisor.sh -s kata-qemu | xargs ./configure --prefix=/opt/kata --with-pkgversion=kata-static +RUN PREFIX=/opt/kata /root/configure-hypervisor.sh -s kata-qemu | xargs ./configure \ + --with-pkgversion=kata-static + RUN make clean RUN make -j$(nproc) RUN make install DESTDIR=/tmp/qemu-static