Ignore errors occuring during copy

This change ignores errors that occur during copying of the kernel
sources. These may appear when another process is working in that
directory concurrently.
This commit is contained in:
Fabian Mastenbroek 2020-11-12 19:23:40 +01:00
parent b6161439b9
commit f1522b252d
No known key found for this signature in database
GPG key ID: 405FC6F81F0A7B85

2
debian/rules vendored
View file

@ -172,7 +172,7 @@ binary: install
install -m 0644 ${KERNEL_SRC}/.config debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
# copy to allow building in parallel to kernel/module compilation without interference
rm -rf ${KERNEL_SRC_COPY}
cp -ar ${KERNEL_SRC} ${KERNEL_SRC_COPY}
-cp -ar ${KERNEL_SRC} ${KERNEL_SRC_COPY}
make -C ${KERNEL_SRC_COPY} mrproper
cd ${KERNEL_SRC_COPY}; find . -path './debian/*' -prune \
-o -path './include/*' -prune \