[pve-devel] [PATCH ha-manager 07/12] sim: don't install PVE::HA::Config

Fabian Grünbichler f.gruenbichler at proxmox.com
Fri Sep 28 12:48:54 CEST 2018


it is not needed anymore by the simulator.

Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---
note: this patch is also redundant since we switch to a single install target
and debian/*.install files per package in a later patch

 src/PVE/HA/Makefile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/PVE/HA/Makefile b/src/PVE/HA/Makefile
index 8b40776..313e6b0 100644
--- a/src/PVE/HA/Makefile
+++ b/src/PVE/HA/Makefile
@@ -1,6 +1,8 @@
-SOURCES=CRM.pm Env.pm Groups.pm Resources.pm Config.pm LRM.pm Manager.pm \
+SIM_SOURCES=CRM.pm Env.pm Groups.pm Resources.pm LRM.pm Manager.pm \
 	NodeStatus.pm Tools.pm FenceConfig.pm Fence.pm
 
+SOURCES=${SIM_SOURCES} Config.pm
+
 .PHONY: install
 install:
 	install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/HA
@@ -11,5 +13,5 @@ install:
 .PHONY: installsim
 installsim:
 	install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/HA
-	for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/HA/$$i; done
+	for i in ${SIM_SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/HA/$$i; done
 	make -C Sim installsim
-- 
2.19.0





More information about the pve-devel mailing list