From dec5fd339b2ffb0a80a9467b7ab5e89d2d7f4a24 Mon Sep 17 00:00:00 2001 From: Tikhon Tarnavsky Date: Thu, 17 Mar 2011 18:36:23 +0200 Subject: [PATCH] Makefile: added -p to mkdir to avoid error message when dir exists. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 19215ea..cfa3c84 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ $(foreach l,$(LANGS),book-$(l)): book-%: book-%.xml ./makeover $* $(foreach l,$(LANGS),book-$(l)/default.css): book-%/default.css: book.css - -mkdir book-$* + -mkdir -p book-$* rsync book.css book-$*/default.css $(foreach l,$(LANGS),book-$(l).html): book-%.html: book-%.xml -- 2.11.4.GIT