diff options
author | Peter Wu <peter@lekensteyn.nl> | 2019-11-30 18:42:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-03 11:48:45 +0100 |
commit | 48da3ac67b7c8559ef4ce1636c4bcb9047439a9b (patch) | |
tree | 9f8249c57cf18fd87849a60b2f9c7a0e5d10065f | |
parent | 5d576afc5ec4cb8fa180ff265fa73ff535b9f1b3 (diff) | |
download | curl-48da3ac67b7c8559ef4ce1636c4bcb9047439a9b.tar.gz |
travis: do not use OVERRIDE_CC or OVERRIDE_CXX if empty
Fixes the macOS builds where OVERRIDE_CC and OVERRIDE_CXX are not set.
Reported-by: Jay Satiro
Fixes #4659
Closes #4661
Closes #4664
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index c157f7c87..94e13bfeb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -439,8 +439,8 @@ matrix: - zlib1g-dev before_install: - - export "${OVERRIDE_CC}" - - export "${OVERRIDE_CXX}" + - export "${OVERRIDE_CC-blank=}" + - export "${OVERRIDE_CXX-blank=}" install: - if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi |