From 4d6de3e4ae28894e4ae22cf732f591da8eb953a8 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 12 Nov 2022 15:41:29 +0100 Subject: [PATCH] buildsys: avoid phony 'install' target by setting actual pre-requisites Signed-off-by: Thomas Lamprecht --- src/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 5c85c88..4e79c5d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -37,8 +37,7 @@ LIB_SOURCES = \ all: -.PHONY: install -install: +install: $(addprefix PVE/,${LIB_SOURCES}) install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE for i in ${LIB_SOURCES}; do install -D -m 0644 PVE/$$i ${DESTDIR}${PERLDIR}/PVE/$$i; done