From dd6cfc8bcff20648b0fbc1018515625f6560b3a3 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Wed, 19 Jul 2017 12:52:01 +0200 Subject: [PATCH] slurm-wlm: fix conflict with slurm --- srcpkgs/slurm-wlm/template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/slurm-wlm/template b/srcpkgs/slurm-wlm/template index a391aabe4f7..414ba7d6076 100644 --- a/srcpkgs/slurm-wlm/template +++ b/srcpkgs/slurm-wlm/template @@ -1,7 +1,7 @@ # Template file for 'slurm-wlm' pkgname=slurm-wlm version=17.02.6.1 -revision=1 +revision=2 _distver="${version//./-}" wrksrc="slurm-slurm-${_distver}" build_style=gnu-configure @@ -28,3 +28,8 @@ if [ -z "${CROSS_BUILD}" ]; then # The below at time of writing can not be cross compiled makedepends+=" rrdtool-devel hdf5-devel libnuma-devel" fi + +post_install() { + # Rename slurm(1) manpage to avoid conflict with slurm + mv ${DESTDIR}/usr/share/man/man1/slurm.1 ${DESTDIR}/usr/share/man/man1/slurm-wlm.1 +}