diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ cssprojects ?= $(wildcard shared/themes/goab styling) -include shared/themes/include.mk always-make = $(filter -B,$(MAKEFLAGS)) -avoid-broken-git = $(shell cd content && git symbolic-ref -q HEAD > /dev/null || echo --no-rcs) +avoid-broken-git = $(shell cd content && git symbolic-ref -q HEAD > /dev/null || echo " --no-rcs") all: build @@ -30,6 +30,6 @@ content: submodules [ -e '$@/index.mdwn' ] || printf '# Hello world!\n\nHello world!\n' > '$@/index.mdwn' build: $(cssprojects) - find config -name *.setup -exec ikiwiki --setup '{}' $(avoid-broken-git) $(if $(always-make),--rebuild) ';' + find config -name *.setup -exec ikiwiki --setup '{}'$(avoid-broken-git)$(if $(always-make), --rebuild) ';' .PHONY: all build submodules content |