Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C823584F71 for ; Sun, 17 Sep 2023 12:14:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id qdiXMzi4oSOf for ; Sun, 17 Sep 2023 12:14:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 26FE584E5A for ; Sun, 17 Sep 2023 12:14:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E850FBDB; Sun, 17 Sep 2023 12:14:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169495288851860" MIME-Version: 1.0 Date: Sun, 17 Sep 2023 12:14:48 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230917121448.1E850FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169495288851860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Sep 17 12:14:48 UTC 2023 Modified Files: pkgsrc/emulators/qemu: Makefile Log Message: qemu: move rsp threshold to ALL_ENV to fix incremental builds To generate a diff of this commit: cvs rdiff -u -r1.322 -r1.323 pkgsrc/emulators/qemu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169495288851860 Content-Disposition: inline Content-Length: 761 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/qemu/Makefile diff -u pkgsrc/emulators/qemu/Makefile:1.322 pkgsrc/emulators/qemu/Makefile:1.323 --- pkgsrc/emulators/qemu/Makefile:1.322 Sat Sep 16 13:20:51 2023 +++ pkgsrc/emulators/qemu/Makefile Sun Sep 17 12:14:47 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.322 2023/09/16 13:20:51 tnn Exp $ +# $NetBSD: Makefile,v 1.323 2023/09/17 12:14:47 tnn Exp $ DISTNAME= qemu-8.1.0 CATEGORIES= emulators @@ -49,7 +49,7 @@ CONFIGURE_ARGS+= --mandir=${PREFIX}/${PK CONFIGURE_ARGS+= --enable-curses CONFIGURE_ARGS+= --enable-docs CONFIGURE_ENV+= mansuffix=/${PKGMANDIR} -CONFIGURE_ENV+= MESON_RSP_THRESHOLD=262144 +ALL_ENV+= MESON_RSP_THRESHOLD=262144 .if defined(PKGSRC_USE_SSP) # do not add flags to everything --_----------=_169495288851860--