diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-04-20 17:36:48 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-04-20 17:36:48 +0200 |
commit | f44579d72e2cd87dbdc9981978b734eef37740dd (patch) | |
tree | cb8313cfc955a545b18fb587979c17364f4e1db8 /Makefile | |
parent | b97b6ce523e8bff05f4fecd98e2211a2601008d7 (diff) |
Tidy spaces in rules.
Diffstat (limited to 'Makefile')
-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 |