summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-09-18 08:09:45 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-09-18 08:09:45 +0200
commit793b8b59a567aaa17bd49458d0bf6b426b118603 (patch)
treefad862b3f2c3501eba0e2f8385179d492f912375
parent7c410c08fe481c772bd5146fdf67e9c1b709883d (diff)
downloadtheos-website-793b8b59a567aaa17bd49458d0bf6b426b118603.tar.xz
Makefile: Fix mkdir flag typo
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6036671..f3a58e6 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ FILES := $(HTML) $(CSS) robots.txt sitemap.xml sitemap1.xml \
site: build/.well-known/ $(addprefix build/, $(FILES))
build/%/:
- mkdir -P $@
+ mkdir -p $@
clean:
-rm $(addprefix build/, $(FILES))