From b1045cc2ca80d2448daafb705e1a3ac6958bab13 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 18 Oct 2013 09:41:16 +0200 Subject: [PATCH] add missing Makefile to install LunCmd/ modules --- PVE/Storage/LunCmd/Makefile | 5 +++++ PVE/Storage/Makefile | 1 + 2 files changed, 6 insertions(+) create mode 100644 PVE/Storage/LunCmd/Makefile diff --git a/PVE/Storage/LunCmd/Makefile b/PVE/Storage/LunCmd/Makefile new file mode 100644 index 0000000..fce2b80 --- /dev/null +++ b/PVE/Storage/LunCmd/Makefile @@ -0,0 +1,5 @@ +SOURCES=Comstar.pm Istgt.pm + +.PHONY: install +install: + for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Storage/LunCmd/$$i; done diff --git a/PVE/Storage/Makefile b/PVE/Storage/Makefile index 818c98a..919c486 100644 --- a/PVE/Storage/Makefile +++ b/PVE/Storage/Makefile @@ -3,3 +3,4 @@ SOURCES=Plugin.pm DirPlugin.pm LVMPlugin.pm NFSPlugin.pm ISCSIPlugin.pm RBDPlugi .PHONY: install install: for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Storage/$$i; done + make -C LunCmd install