From 1ad8efa86e4581677274f76eb0730ab5883deadb Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Mon, 20 Jun 2011 15:53:23 +0000 Subject: [PATCH] Fix 'reformat' mk target to handle recent libdir changes. --- mk/pp.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/pp.mk b/mk/pp.mk index 3d3d2dce073..a6ecf7fa598 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,stage1, stage1/rustc$(X)) \ + do $(call CFG_RUN_TARG,stage0, stage1/rustc$(X)) \ --pretty normal $$i >$$i.tmp; \ if cmp --silent $$i.tmp $$i; \ then echo no changes to $$i; rm $$i.tmp; \