[pve-devel] [PATCH qemu-server v6 1/5] Force overwriting existing compressed man pages and symbolic links

Emmanuel Kasper e.kasper at proxmox.com
Tue May 23 16:26:17 CEST 2017


This allows calling the 'make install' target twice in a row.
---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 7d89454..f7452a6 100644
--- a/Makefile
+++ b/Makefile
@@ -81,12 +81,12 @@ install: ${PKGSOURCES}
 	install -D -m 0644 modules-load.conf ${DESTDIR}/etc/modules-load.d/qemu-server.conf
 	install -m 0755 qmextract ${DESTDIR}${LIBDIR}
 	install -m 0644 qm.1 ${DESTDIR}/${MAN1DIR}
-	gzip -9 -n ${DESTDIR}/${MAN1DIR}/qm.1
+	gzip -9 -n -f ${DESTDIR}/${MAN1DIR}/qm.1
 	install -m 0644 qmrestore.1 ${DESTDIR}/${MAN1DIR}
-	gzip -9 -n ${DESTDIR}/${MAN1DIR}/qmrestore.1
+	gzip -9 -n -f ${DESTDIR}/${MAN1DIR}/qmrestore.1
 	install -m 0644 qm.conf.5 ${DESTDIR}/${MAN5DIR}
-	gzip -9 -n ${DESTDIR}/${MAN5DIR}/qm.conf.5
-	cd ${DESTDIR}/${MAN5DIR}; ln -s qm.conf.5.gz vm.conf.5.gz
+	gzip -9 -n -f ${DESTDIR}/${MAN5DIR}/qm.conf.5
+	cd ${DESTDIR}/${MAN5DIR}; ln -s -f qm.conf.5.gz vm.conf.5.gz
 
 .PHONY: deb
 deb: ${DEB}
-- 
2.11.0





More information about the pve-devel mailing list