From 21c57e27642c31d7046ac1eb589550be3a969026 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Wed, 27 Nov 2019 21:11:04 +1300 Subject: [PATCH] pass -xdev to find when making filelists --- live-build/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live-build/functions b/live-build/functions index 977af4cd..8092f3a4 100644 --- a/live-build/functions +++ b/live-build/functions @@ -54,7 +54,7 @@ create_manifest() { if [ "$PROJECT" = ubuntu-cpc ]; then echo "create_manifest creating file listing." local target_filelist=${2%.manifest}.filelist - (cd "${chroot_root}" && find) > "${target_filelist}" + (cd "${chroot_root}" && find -xdev) > "${target_filelist}" fi echo "create_manifest finished" }