The code introduces a cyclic package dependency, so we need to move it to pve-manager package.
10 lines
199 B
Makefile
10 lines
199 B
Makefile
SOURCES=pvesm.pm
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/CLI
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/CLI/$$i; done
|
|
|
|
|
|
clean:
|