Received: by mail.netbsd.org (Postfix, from userid 605) id BFCE684D8E; Tue, 11 May 2021 14:56:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 093F184D5E for ; Tue, 11 May 2021 14:56: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 PIsneclRnvvQ for ; Tue, 11 May 2021 14:56:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6083C84CDB for ; Tue, 11 May 2021 14:56:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5A170FA95; Tue, 11 May 2021 14:56:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620745007183770" MIME-Version: 1.0 Date: Tue, 11 May 2021 14:56:47 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/mk/emulator To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20210511145647.5A170FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620745007183770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Tue May 11 14:56:47 UTC 2021 Modified Files: pkgsrc/mk/emulator: emulator-vars.mk Log Message: Add freebsd-{i386,x86_64} to _EMUL_PREFER. No preference, no emulation... To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/mk/emulator/emulator-vars.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620745007183770 Content-Disposition: inline Content-Length: 879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/emulator/emulator-vars.mk diff -u pkgsrc/mk/emulator/emulator-vars.mk:1.10 pkgsrc/mk/emulator/emulator-vars.mk:1.11 --- pkgsrc/mk/emulator/emulator-vars.mk:1.10 Mon Apr 30 10:41:35 2018 +++ pkgsrc/mk/emulator/emulator-vars.mk Tue May 11 14:56:47 2021 @@ -1,4 +1,4 @@ -# $NetBSD: emulator-vars.mk,v 1.10 2018/04/30 10:41:35 wiz Exp $ +# $NetBSD: emulator-vars.mk,v 1.11 2021/05/11 14:56:47 hauke Exp $ # # This file is included by bsd.prefs.mk only if EMUL_PLATFORMS is defined # and non-empty. @@ -95,6 +95,9 @@ _EMUL_PREFER.solaris-x86_64= solaris-i38 _EMUL_PREFER.linux-sparc64= linux-sparc _EMUL_PREFER.linux-x86_64= linux-i386 +_EMUL_PREFER.freebsd-i386= linux-i386 +_EMUL_PREFER.freebsd-x86_64= linux-x86_64 linux-i386 + # Prefer "emulating" the native operating system, then fall back to # the other preferences listed above. # --_----------=_1620745007183770--