Remove references to man.5 from build.sh

man.5 page was removed in c0eacfa0f3
removed remaining references in build.sh, otherwise strict build (like arch linux makepkg) fails.
This commit is contained in:
Martin Ashby 2022-07-02 22:34:51 +01:00 committed by GitHub
parent ac4a75b7d5
commit 0eb8a95d4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,9 +104,6 @@ build_man_pages() {
for f in ./docs/man/*.1.scd; do for f in ./docs/man/*.1.scd; do
scdoc < "$f" > "${builddir}/man/$(basename "$f" .scd)" scdoc < "$f" > "${builddir}/man/$(basename "$f" .scd)"
done done
for f in ./docs/man/*.5.scd; do
scdoc < "$f" > "${builddir}/man/$(basename "$f" .scd)"
done
} }
build() { build() {
@ -159,10 +156,6 @@ install() {
for f in "${builddir}"/man/*.1; do for f in "${builddir}"/man/*.1; do
command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man1/" command install -m 0644 "$f" "${destdir}/${prefix}/share/man/man1/"
done 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 fi
} }