From be71eff4717d605614214415a257f0bca054c9cc Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Tue, 26 Jan 2010 03:10:14 +0100 Subject: [PATCH] Don't bail out if directory man already exists --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6185995..1b19997 100644 --- a/Makefile +++ b/Makefile @@ -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