summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-12-03 16:25:15 +0800
committerJohn Hodge <tpg@mutabah.net>2016-12-03 16:25:15 +0800
commitc94826345a033d6632efdad4f2c0fd0c4fa6c01a (patch)
treee4efbf0130a61febb273bc80239830082d907c5a
parent5433b08afd28f5ba872db5cf5bb5941d13b56ff8 (diff)
downloadmrust-c94826345a033d6632efdad4f2c0fd0c4fa6c01a.tar.gz
Travis CI - Damnit
-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)