From 5d95558bae0fde594ee6cce5afded10b61306b5b Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 11 Aug 2020 10:47:23 +0200 Subject: [PATCH] Makefile: build target - do not fail if control file does not exist This can happen if a previous build failed ... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfd440a7..4b26074b 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ doc: .PHONY: build build: rm -rf build - rm debian/control + rm -f debian/control debcargo package --config debian/debcargo.toml --changelog-ready --no-overlay-write-back --directory build proxmox-backup $(shell dpkg-parsechangelog -l debian/changelog -SVersion | sed -e 's/-.*//') sed -e '1,/^$$/ ! d' build/debian/control > build/debian/control.src cat build/debian/control.src build/debian/control.in > build/debian/control