Date: Sun, 24 Jul 2022 22:55:29 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 08585e779939 - main - tools/boot: Fix universe.sh's ZFS exclusion test Message-ID: <202207242255.26OMtTmM004270@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=08585e779939cbb0fa932b15678090a58c5ef679 commit 08585e779939cbb0fa932b15678090a58c5ef679 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-07-24 21:51:06 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-07-24 22:53:34 +0000 tools/boot: Fix universe.sh's ZFS exclusion test MK_LOADER_ZFS is the current spelling of enabling or disabling ZFS builds. Use it instead of MK_ZFS. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35896 --- tools/boot/universe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/boot/universe.sh b/tools/boot/universe.sh index 13d707750b86..6fcb496baf8c 100755 --- a/tools/boot/universe.sh +++ b/tools/boot/universe.sh @@ -94,7 +94,7 @@ for i in \ i386/i386 \ ; do ta=${i##*/} - dobuild $ta _.boot.${ta}.no_zfs.log "MK_ZFS=no" + dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_ZFS=no" done # Build with firewire
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207242255.26OMtTmM004270>