diff options
Diffstat (limited to 'system/qemu/qemu.SlackBuild')
-rw-r--r-- | system/qemu/qemu.SlackBuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/system/qemu/qemu.SlackBuild b/system/qemu/qemu.SlackBuild index 1f6ebfffbb..559ba52634 100644 --- a/system/qemu/qemu.SlackBuild +++ b/system/qemu/qemu.SlackBuild @@ -26,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=qemu -VERSION=${VERSION:-8.2.2} -BUILD=${BUILD:-2} +VERSION=${VERSION:-9.0.2} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -75,7 +75,7 @@ fi # Needed to build man pages if built after plain "su" export PATH=$PATH:/usr/share/texmf/bin -# Autodetect liburing support +# Autodetect liburing support (still needed?) uring="dis" ; if pkg-config --exists liburing ; then uring="en" ; fi set -e @@ -96,9 +96,6 @@ find -L . \ # Use newer meson from python3-meson-opt PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') export PYTHONPATH=/opt/python$PYVER/site-packages - -# Remove double CFLAGS -sed -i "s|^\ \ CFLAGS=\"-O2\ | CFLAGS=\"|" configure # Enable only x86* and arm emulation for qemu: if you want to build # all the targets available use TARGETS=all |