From c87cbcee71bcd4068ca8d7ab54742c2e96e5c48c Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 11 Jun 2021 14:01:17 +0200 Subject: [PATCH] buildsys: use simple cp instead of rsync to avoid an extra build dependencies for such a trivial thing Signed-off-by: Thomas Lamprecht --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 13ca507..60817dc 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ update-bindings: .PHONY: ${BUILDSRC} ${BUILDSRC}: rm -rf ${BUILDSRC} - rsync -a ${PPSRC}/ ${BUILDSRC} + cp -a ${PPSRC}/ ${BUILDSRC} cp -a debian ${BUILDSRC} perl -MDevel::PPPort -e 'Devel::PPPort::WriteFile("${BUILDSRC}/ppport.h");' echo "git clone git://git.proxmox.com/git/pve-storage.git\\ngit checkout ${GITVERSION}" >${BUILDSRC}/debian/SOURCE