diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-08-31 03:09:25 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-08-31 03:09:25 (GMT) |
commit | 3de25a92e801acec7afcdb9b563a132ca327327c (patch) | |
tree | 5a78501fa0aff4a440ae502798faf018174dafb3 | |
parent | 40982e03a34d869900d6ae2201c19cbdcf9a6d6f (diff) | |
download | SCons-3de25a92e801acec7afcdb9b563a132ca327327c.zip SCons-3de25a92e801acec7afcdb9b563a132ca327327c.tar.gz SCons-3de25a92e801acec7afcdb9b563a132ca327327c.tar.bz2 |
Attempt to fix py37 java falures. Which are likely caused by newer oracle java echoing values in _JAVA_OPTIONS env variable to stderr.
-rwxr-xr-x | .travis/install.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 50331e5..7cdfaa7 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -33,3 +33,7 @@ if [[ "$PYVER" == 27 ]]; then tar xzf rel-3.0.12.tar.gz cd swig-rel-3.0.12 && ./autogen.sh && ./configure --prefix=/usr && make && sudo make install && cd .. fi + +# Clear this flag as newer Oracle Java's will echo to stderr any values set in it which breaks several java +# tests +unset _JAVA_OPTIONS
\ No newline at end of file |