diff options
author | Jonas Smedegaard <dr@jones.dk> | 2007-11-06 12:10:17 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2007-11-06 12:10:17 +0100 |
commit | 74e15aa80e8234cfefabe109e810eadb6d50f982 (patch) | |
tree | ab340360c670ab65a3f78ecf6a3d73a1460bd52b | |
parent | 98db86ccbcdad71182be70d3a74ab99d65fb9e82 (diff) |
Fix fallback fail-and-hint install target in Makefile, and move it up below all target.
-rw-r--r-- | Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -20,6 +20,11 @@ podir = po all: $(SOURCES) +install:: +ifeq ($(strip $(CONFIGS)),) + $(error Please configure ikiwiki.setup and then uncomment it at the top of the Makefile!) +endif + # 1:source 2:locales @@ -137,13 +142,6 @@ $(foreach config,$(CONFIGS),$(eval $(call CONFIG_template,$(config)))) -install: -ifneq ($(strip $(CONFIGS)),) - $(error Please configure ikiwiki.setup and then uncomment it at the top of the Makefile!) -endif - - - pot: $(ALL_POTFILES) po: $(ALL_POFILES) translations: $(ALL_L10NFILES) |