From 1a1de814412ccd095adc685de14030b51a60c1c3 Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Wed, 23 Dec 2020 16:34:42 +0300 Subject: [PATCH] build.sh: Do not try to install man pages if they were not built --- build.sh | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) 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