Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 May 2024 17:01:02 GMT
From:      Colin Percival <cperciva@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a04ecddfc721 - main - release/Makefile.vm: Use qemu-user-static-devel
Message-ID:  <202405301701.44UH12Gx081028@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cperciva:

URL: https://cgit.FreeBSD.org/src/commit/?id=a04ecddfc721427fd97fd1fcc27492ebd19ad183

commit a04ecddfc721427fd97fd1fcc27492ebd19ad183
Author:     Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2024-05-30 16:48:40 +0000
Commit:     Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2024-05-30 17:00:42 +0000

    release/Makefile.vm: Use qemu-user-static-devel
    
    This is a newer version of the qemu-user-static code, which is very
    much out of date.
    
    Requested by:   imp
---
 release/Makefile.vm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/release/Makefile.vm b/release/Makefile.vm
index 548b4c1cca3b..b5c1470a6eac 100644
--- a/release/Makefile.vm
+++ b/release/Makefile.vm
@@ -75,16 +75,16 @@ ${_V}!=	eval $$(awk '/^${_V}=/{print}' ${.CURDIR}/../sys/conf/newvers.sh); echo
 
 emulator-portinstall:
 .if !exists(/usr/local/bin/qemu-${TARGET_ARCH}-static)
-.if exists(${PORTSDIR}/emulators/qemu-user-static/Makefile)
+.if exists(${PORTSDIR}/emulators/qemu-user-static-devel/Makefile)
 	env - UNAME_r=${UNAME_r} PATH=$$PATH \
-	    make -C ${PORTSDIR}/emulators/qemu-user-static \
+	    make -C ${PORTSDIR}/emulators/qemu-user-static-devel \
 	    BATCH=1 WRKDIRPREFIX=/tmp/ports DISTDIR=/tmp/distfiles \
 	    all install clean
 .else
 .if !exists(/usr/local/sbin/pkg-static)
 	env ASSUME_ALWAYS_YES=yes pkg bootstrap -y
 .endif
-	env ASSUME_ALWAYS_YES=yes pkg install -y emulators/qemu-user-static
+	env ASSUME_ALWAYS_YES=yes pkg install -y emulators/qemu-user-static-devel
 .endif
 .endif
 	touch ${.TARGET}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405301701.44UH12Gx081028>