buildsys: avoid phony 'install' target by setting actual pre-requisites

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-11-12 15:41:29 +01:00
parent e0a74f9950
commit 4d6de3e4ae

View File

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