Merge pull request #516

This commit is contained in:
fox.cpp 2022-07-03 16:40:55 +03:00
commit fd8260c002
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

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