aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-11-26 23:16:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-11-27 08:24:02 +0100
commit113db127ee2b2f874dfcce406103ffe666e11953 (patch)
tree8e9e50cd0a73e13060d3fe4166d7492d47a8c842 /.travis.yml
parent793e37767581aec7102d2ecafa34fc1316b1b31f (diff)
travis: export the CC/CXX variables when set
Suggested-by: Peter Wu Fixes #4637 Closes #4640
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 73ac0fb01..cdfb6d6d7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -439,8 +439,8 @@ matrix:
- zlib1g-dev
before_install:
- - eval "${OVERRIDE_CC}"
- - eval "${OVERRIDE_CXX}"
+ - export "${OVERRIDE_CC}"
+ - export "${OVERRIDE_CXX}"
install:
- if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi