1
0
mirror of synced 2026-02-13 19:04:07 +00:00

Don't bail out if directory man already exists

This commit is contained in:
Axel Beckert
2010-01-26 03:10:14 +01:00
parent cdc8d3041a
commit be71eff471

View File

@@ -195,7 +195,7 @@ install: fixup-perms install-bin install-etc install-hooks install-libraries ins
# Build our manpages via the `pod2man` command.
#
manpages:
-mkdir man
-mkdir -p man
cd bin; for i in *-*; do pod2man --release=${VERSION} --official --section=8 $$i ../man/$$i.8; done
for i in man/*.8; do gzip --force -9 $$i; done