]> git.proxmox.com Git - pve-manager.git/commitdiff
bin/make: gather helper scripts in separate variable
authorMax Carrara <m.carrara@proxmox.com>
Tue, 2 Apr 2024 14:55:23 +0000 (16:55 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Thu, 11 Apr 2024 08:42:11 +0000 (10:42 +0200)
Signed-off-by: Max Carrara <m.carrara@proxmox.com>
Tested-by: Friedrich Weber <f.weber@proxmox.com>
bin/Makefile

index b221e4b17e478cb7b991ea140293787323a39d78..180a91b554a6187faa799bdbde4b253da01b2e1a 100644 (file)
@@ -25,6 +25,10 @@ SCRIPTS =                    \
        pveperf                 \
        pvereport
 
+HELPERS =                      \
+       pve-startall-delay      \
+       pve-init-ceph-crash
+
 SERVICE_MANS = $(addsuffix .8, $(SERVICES))
 
 CLI_MANS =                             \
@@ -82,8 +86,7 @@ install: $(SCRIPTS) $(CLI_MANS) $(SERVICE_MANS) $(BASH_COMPLETIONS) $(ZSH_COMPLE
        install -d $(BINDIR)
        install -m 0755 $(SCRIPTS) $(BINDIR)
        install -d $(USRSHARE)/helpers
-       install -m 0755 pve-startall-delay $(USRSHARE)/helpers
-       install -m 0755 pve-init-ceph-crash $(USRSHARE)/helpers
+       install -m 0755 $(HELPERS) $(USRSHARE)/helpers
        install -d $(MAN1DIR)
        install -m 0644 $(CLI_MANS) $(MAN1DIR)
        install -d $(MAN8DIR)