From 228a8f516d5bf64772b7c07898e3f67e5085cf63 Mon Sep 17 00:00:00 2001 From: Jan Mojzis Date: Wed, 27 Jul 2016 17:58:19 +0200 Subject: [PATCH] fixed directory for manpages --- make-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/make-install.sh b/make-install.sh index ff01808..b691435 100755 --- a/make-install.sh +++ b/make-install.sh @@ -44,6 +44,7 @@ ls "${man}" | sort |\ while read x do n=`echo "${x}" | cut -d'.' -f2` + mkdir -p "${mandir}/man${n}" || exit 111 "${installcmd}" "${man}/${x}" "${mandir}/man${n}" "${x}.tmp" "${x}" || exit 111 echo "=== `date` === installing ${man}/${x} -> ${mandir}/man${n}/${x}" done || exit 111