diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-03-07 17:00:27 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-03-07 17:00:27 -0800 |
| commit | 893e499e8636c8e9ee3eea6e9f3337db9115018e (patch) | |
| tree | a53543f6a6f026d7603f6395ad34469228cd793a | |
| parent | 5430c0c5c0fbdfb8e89358a187d2f9a8d4b796d4 (diff) | |
| download | rust-893e499e8636c8e9ee3eea6e9f3337db9115018e.tar.gz rust-893e499e8636c8e9ee3eea6e9f3337db9115018e.zip | |
appveyor: Fix a switched condition for cargotest
It was intended that EXCLUDE_CARGO *doesn't* run cargotest!
| -rw-r--r-- | src/bootstrap/mk/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index c62fa0ede70..7897af4f724 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -17,9 +17,9 @@ BOOTSTRAP_ARGS := endif ifdef EXCLUDE_CARGO -AUX_ARGS := src/tools/cargo src/tools/cargotest -else AUX_ARGS := +else +AUX_ARGS := src/tools/cargo src/tools/cargotest endif BOOTSTRAP := $(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap.py |
