From 9f3f4a23660edc14c44e366092fd0caf8fdb97a7 Mon Sep 17 00:00:00 2001 From: Kuba Tyszko Date: Sun, 7 Sep 2025 08:40:34 -0700 Subject: [PATCH] build/common: replacing mount_unionfs with mount_nullfs to make the build work inside BSD jail. Unionfs isn't a "jail friendly" filesystem and it can't be mounted inside jails --- build/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/common.sh b/build/common.sh index 41c42fbc..bfc838e5 100644 --- a/build/common.sh +++ b/build/common.sh @@ -480,7 +480,7 @@ setup_clone() echo ">>> Setting up ${2} clone in ${1}" # repositories may be huge so avoid the copy :) - mkdir -p ${1}${2} && mount_unionfs -o below ${2} ${1}${2} + mkdir -p ${1}${2} && mount_nullfs ${2} ${1}${2} } setup_copy()