From 8c821ff03868c08e0c1b4c7caa730f8b7c560bd5 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Wed, 27 Jul 2011 11:05:54 +0200 Subject: [PATCH] Fix reformat make target --- mk/pp.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/pp.mk b/mk/pp.mk index 169c19b9aec..2e50fcde5fa 100644 --- a/mk/pp.mk +++ b/mk/pp.mk @@ -9,7 +9,7 @@ PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L no-reformat) reformat: $(SREQ1) @$(call E, reformat [stage1]: $@) for i in $(PP_INPUTS_FILTERED); \ - do $(call CFG_RUN_TARG,stage0,stage1/rustc$(X)) \ + do $(call CFG_RUN_TARG,stage1,stage1/rustc$(X)) \ --pretty normal $$i >$$i.tmp; \ if cmp --silent $$i.tmp $$i; \ then echo no changes to $$i; rm $$i.tmp; \