소스 검색

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.
Fabian Mastenbroek 5 년 전
부모
커밋
f1522b252d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      debian/rules

+ 1 - 1
debian/rules

@@ -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 \