mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
build.sh: Do not try to install man pages if they were not built
This commit is contained in:
parent
cd1d52764c
commit
1a1de81441
1 changed files with 11 additions and 8 deletions
19
build.sh
19
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue