qemu{,-user}: don't source the build style

xbps-src-make does not like this, and it's too clever
This commit is contained in:
classabbyamp 2025-05-05 22:44:24 -04:00
parent abf4038da0
commit 62c0c08e18
No known key found for this signature in database
GPG key ID: 6BE0755918A4C7F5
2 changed files with 32 additions and 4 deletions

View file

@ -70,10 +70,24 @@ for _arch in "${_archs[@]}"; do
}"
done
. /void-packages/common/build-style/configure.sh 2>/dev/null
export PYTHONUNBUFFERED=1
do_configure() {
./configure ${configure_args}
}
do_build() {
make ${makejobs}
}
do_check() {
make ${makejobs} check
}
do_install() {
make DESTDIR=${DESTDIR} install
}
_user_tmpl() {
_arch="$1"
_binfmt="$2"

View file

@ -134,10 +134,24 @@ done
subpackages+=" qemu-common"
. /void-packages/common/build-style/configure.sh 2>/dev/null
export PYTHONUNBUFFERED=1
do_configure() {
./configure ${configure_args}
}
do_build() {
make ${makejobs}
}
do_check() {
make ${makejobs} check
}
do_install() {
make DESTDIR=${DESTDIR} install
}
_sys_tmpl() {
_arch="$1"
_depends="$2"