From: Fabian Grünbichler Date: Wed, 1 Jul 2020 08:21:50 +0000 (+0200) Subject: build: fix erroneous install with empty DESTDIR X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8dbcb0ddddc0ca9e649c4d88fba7570b27108121;p=pve-network.git build: fix erroneous install with empty DESTDIR dh calls make in the dh_auto_build step without setting DESTDIR, so the missing empty default target meant that we'd install all the files to the build system during dh_auto_build, and then install them again to the tmp build dir during dh_auto_install. obviously the former is not something we want to do ;) Signed-off-by: Fabian Grünbichler --- diff --git a/PVE/Makefile b/PVE/Makefile index 1fb961d..26e01a4 100644 --- a/PVE/Makefile +++ b/PVE/Makefile @@ -1,3 +1,5 @@ +all: + .PHONY: install install: make -C Network install