diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-08-27 15:23:08 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-27 15:23:08 -0500 |
commit | 46c1198fd7f79ae6b3ddd107a3e59845b5f67500 (patch) | |
tree | 6a677e3f9333a1c49a4fcf2b3d3f51a70a01a081 | |
parent | Merge pull request #5820 (diff) | |
parent | build: fix depends Travis ncurses build, don't wipe CONFIG_SHELL (diff) | |
download | monero-46c1198fd7f79ae6b3ddd107a3e59845b5f67500.tar.xz |
Merge pull request #5844
a7d1577 build: fix depends Travis ncurses build, don't wipe CONFIG_SHELL (xiphon)
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 07b92aaff..516e4f8e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,7 @@ before_script: - if [ -n "$OSX_SDK" -a -f contrib/depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then tar -C contrib/depends/SDKs -xf contrib/depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz; fi - if [[ $HOST = *-mingw32 ]]; then $DOCKER_EXEC bash -c "update-alternatives --set $HOST-g++ \$(which $HOST-g++-posix)"; fi - if [[ $HOST = *-mingw32 ]]; then $DOCKER_EXEC bash -c "update-alternatives --set $HOST-gcc \$(which $HOST-gcc-posix)"; fi - - if [ -z "$NO_DEPENDS" ]; then $DOCKER_EXEC bash -c "CONFIG_SHELL= make $MAKEJOBS -C contrib/depends HOST=$HOST $DEP_OPTS"; fi + - if [ -z "$NO_DEPENDS" ]; then $DOCKER_EXEC bash -c "make $MAKEJOBS -C contrib/depends HOST=$HOST $DEP_OPTS"; fi script: - git submodule init && git submodule update - export TRAVIS_COMMIT_LOG=`git log --format=fuller -1` |