diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-11-26 23:16:49 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-27 08:24:02 +0100 |
commit | 113db127ee2b2f874dfcce406103ffe666e11953 (patch) | |
tree | 8e9e50cd0a73e13060d3fe4166d7492d47a8c842 /.travis.yml | |
parent | 793e37767581aec7102d2ecafa34fc1316b1b31f (diff) | |
download | curl-113db127ee2b2f874dfcce406103ffe666e11953.tar.gz |
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.yml | 4 |
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 |