summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index dc478a31..4e9100e0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,7 +17,7 @@ install:
# Tests! (check that they parse, and keep going)
script:
# libstd
- - make "./rustc-nightly/"
+ - make rustc-nightly/
- make output/libstd.hir TAIL_COUNT=2
# rustc (not the actual binary, because that doesn't emit a file yet)
- make output/librustc_driver.hir TAIL_COUNT=2
diff --git a/Makefile b/Makefile
index ecb579d9..0616e89c 100644
--- a/Makefile
+++ b/Makefile
@@ -115,7 +115,7 @@ output/%.ast: samples/%.rs $(BIN)
@mkdir -p output/
$(DBG) $(BIN) $< -o $@ $(PIPECMD)
-RUSTCSRC := ./rustc-nightly/
+RUSTCSRC := rustc-nightly/
RUSTC_SRC_DL := $(RUSTCSRC)/dl-version
output/lib%.hir: $(RUSTCSRC)src/lib%/lib.rs $(RUSTCSRC) $(BIN)