build.sh: Do not try to install man pages if they were not built

This commit is contained in:
fox.cpp 2020-12-23 16:34:42 +03:00
parent cd1d52764c
commit 1a1de81441
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -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