summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5cceff2..e841b59 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,8 @@ IKIWIKI_OPTIONS ?= \
-include shared/themes/Makefile
+avoid-broken-git = $(shell cd content && git symbolic-ref -q HEAD > /dev/null || echo --no-rcs)
+
all: build
init: submodules content
@@ -27,6 +29,6 @@ content: submodules
[ -e '$@/index.mdwn' ] || printf '# Hello world!\n\nHello world!\n' > '$@/index.mdwn'
build: $(cssfiles)
- find config -name *.setup -exec ikiwiki --setup '{}' --rebuild ';'
+ find config -name *.setup -exec ikiwiki --setup '{}' $(avoid-broken-git) --rebuild ';'
.PHONY: all build submodules content