[pve-devel] [PATCH manager 2/5] fix wrong variable syntax
Dominik Csapak
d.csapak at proxmox.com
Fri Jun 9 09:55:25 CEST 2017
{$PACKAGE} expands to '{ACKAGE}', meaning we shipped a dir:
/usr/share/doc/{ACKAGE}/examples
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
bin/init.d/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/init.d/Makefile b/bin/init.d/Makefile
index f984fe13..ed396d4e 100644
--- a/bin/init.d/Makefile
+++ b/bin/init.d/Makefile
@@ -34,7 +34,7 @@ install: ${SCRIPTS}
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-disk at .service.d
install -d ${SERVICEDIR}/ceph-mds at .service.d
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-mds at .service.d
- install -d ${DESTDIR}/usr/share/doc/{$PACKAGE}/examples/
+ install -d ${DESTDIR}/usr/share/doc/${PACKAGE}/examples/
install -m 0644 ceph.service ${DESTDIR}/usr/share/doc/${PACKAGE}/examples/ceph.service
.PHONY: clean
--
2.11.0
More information about the pve-devel
mailing list