diff --git a/build.sh b/build.sh index 94637d6..d1e2b77 100755 --- a/build.sh +++ b/build.sh @@ -143,14 +143,6 @@ install() { command install -m 0755 -d "${destdir}/${prefix}/bin/" command install -m 0755 "${builddir}/maddy" "${builddir}/maddyctl" "${destdir}/${prefix}/bin/" - command install -m 0755 -d "${destdir}/${prefix}/share/man/man1/" - for f in "${builddir}"/man/*.1; do - command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man1/" - done - command install -m 0755 -d "${destdir}/${prefix}/share/man/man5/" - for f in "${builddir}"/man/*.5; do - command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man5/" - done command install -m 0755 -d "${destdir}/etc/maddy/" command install -m 0644 ./maddy.conf "${destdir}/etc/maddy/maddy.conf" @@ -161,6 +153,17 @@ install() { command install -m 0755 -d "${destdir}/${prefix}/lib/systemd/system/" command install -m 0644 "${builddir}"/systemd/*.service "${destdir}/${prefix}/lib/systemd/system/" fi + + if [ -e "${builddir}"/man ]; then + command install -m 0755 -d "${destdir}/${prefix}/share/man/man1/" + for f in "${builddir}"/man/*.1; do + command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man1/" + done + command install -m 0755 -d "${destdir}/${prefix}/share/man/man5/" + for f in "${builddir}"/man/*.5; do + command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man5/" + done + fi } # Old build.sh compatibility