summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2011-04-20 17:36:48 +0200
committerJonas Smedegaard <dr@jones.dk>2011-04-20 17:36:48 +0200
commitf44579d72e2cd87dbdc9981978b734eef37740dd (patch)
treecb8313cfc955a545b18fb587979c17364f4e1db8 /Makefile
parentb97b6ce523e8bff05f4fecd98e2211a2601008d7 (diff)
Tidy spaces in rules.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cb3a012..abbbf62 100644
--- a/Makefile
+++ b/Makefile
@@ -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