mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-12 18:13:50 +02:00
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:
parent
abf4038da0
commit
62c0c08e18
2 changed files with 32 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue