diff options
| author | Graydon Hoare <[email protected]> | 2011-03-21 15:53:08 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-21 15:53:08 -0700 |
| commit | 7ed7c02111d46f4c73f6d936993708692f947f85 (patch) | |
| tree | e0124c76f28e87df0d71f8b46384bfa3287ed4d7 | |
| parent | Fix CFG_RUN* rules a bit harder. Can now do 'make check' on both boot and sta... (diff) | |
| download | rust-7ed7c02111d46f4c73f6d936993708692f947f85.tar.xz rust-7ed7c02111d46f4c73f6d936993708692f947f85.zip | |
FIx three $-typos in Makefile.in.
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 5c68e79a..067ef73d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -726,7 +726,7 @@ TEST_RFAIL_OUTS_STAGE0 := \ TEST_RFAIL_TMPS_BOOT := \ $(TEST_RFAIL_EXES_BOOT:.boot$(X)=.boot$(X).tmp) TEST_RFAIL_TMPS_STAGE0 := \ - $(TEST_RFAIL_EXES_STAGE0:.stage0$(X)=.stage0(X).tmp) + $(TEST_RFAIL_EXES_STAGE0:.stage0$(X)=.stage0$(X).tmp) TEST_CFAIL_CRATES_BOOT := $(filter-out $(TEST_XFAILS_BOOT), $(CFAIL_RC)) @@ -738,7 +738,7 @@ TEST_CFAIL_EXES_BOOT := \ $(subst $(S)src/,,$(TEST_CFAIL_CRATES_BOOT:.rc=.boot$(X))) \ $(subst $(S)src/,,$(TEST_CFAIL_SOURCES_BOOT:.rs=.boot$(X))) TEST_CFAIL_EXES_STAGE0 := \ - $(subst $(S)src/,,$(TEST_CFAIL_CRATES_STAGE0:.rc=.stage0(X))) \ + $(subst $(S)src/,,$(TEST_CFAIL_CRATES_STAGE0:.rc=.stage0$(X))) \ $(subst $(S)src/,,$(TEST_CFAIL_SOURCES_STAGE0:.rs=.stage0$(X))) TEST_CFAIL_OUTS_BOOT := \ @@ -812,7 +812,7 @@ compile-check: tidy \ @# programs, I\'ll live with the noise. -$(Q)$(CFG_DSYMUTIL) $@ -%.stage2(X): %.stage2.o rt/$(CFG_RUNTIME) stage2/glue.o +%.stage2$(X): %.stage2.o rt/$(CFG_RUNTIME) stage2/glue.o @$(call E, link [gcc]: $@) $(Q)gcc $(CFG_GCC_CFLAGS) stage2/glue.o -o $@ $< -Lstage2 -Lrt -lrustrt @# dsymutil sometimes fails or prints a warning, but the |