Date: Sun, 27 Aug 2023 17:52:09 GMT From: Dmitry Chagin <dchagin@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 15ebbf9033c3 - stable/13 - tests: Fix build on mips after 33d7da6b Message-ID: <202308271752.37RHq9Mt021492@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=15ebbf9033c3f4754822206282468ffa3f6642bb commit 15ebbf9033c3f4754822206282468ffa3f6642bb Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2023-08-27 17:51:49 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2023-08-27 17:51:49 +0000 tests: Fix build on mips after 33d7da6b --- tests/sys/vm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/vm/Makefile b/tests/sys/vm/Makefile index b8412079ddb0..3cb3f78fae28 100644 --- a/tests/sys/vm/Makefile +++ b/tests/sys/vm/Makefile @@ -8,7 +8,7 @@ ATF_TESTS_C+= mlock_test \ page_fault_signal \ shared_shadow_inval_test -.if ${MACHINE_ARCH} != "i386" && ${MACHINE} != "arm" && \ +.if ${MACHINE_ARCH} != "i386" && ${MACHINE} != "arm" && ${MACHINE} != "mips" && \ (${MACHINE} != "powerpc" || (${MACHINE_ARCH} != "powerpc" && \ ${MACHINE_ARCH} != "powerpcspe")) # MAP_32BIT is only available on 64-bit platforms
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308271752.37RHq9Mt021492>