Skip to content

Commit e19af74

Browse files
committed
Change level of travis_wait call; chmod +x .sh files
1 parent 4847865 commit e19af74

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ install:
4141
fi
4242
- export BOOST_VERSION=${BOOST_VER//./_}
4343
- export PATH=${HOME}/bin:${PATH}
44-
- sh -x ./install-boost.sh
44+
- travis_wait ./install-boost.sh
4545
- export BOOST_ROOT=${HOME}/${CC}-boost_${BOOST_VER//./_}
4646
- ${CXX} --version
4747

build.sh

100644100755
File mode changed.

install-boost.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ ! -d "${HOME}/${CC}-boost_${BOOST_VERSION}/include" ]; then
66
tar jxf boost_${BOOST_VERSION}.tar.bz2
77
cd boost_${BOOST_VERSION}
88
./bootstrap.sh --with-toolset=$TOOLSET --prefix=${HOME}/${CC}-boost_${BOOST_VERSION}
9-
travis_wait ./b2 --stagedir=. -j2 --build-type=complete --layout=tagged cxxflags='-std=c++11' install >boost-build.log 2>&1
9+
./b2 --stagedir=. -j2 --build-type=complete --layout=tagged cxxflags='-std=c++11' install >boost-build.log 2>&1
1010
cd ..
1111
rm -rf boost_${BOOST_VERSION}
1212
rm -rf boost_${BOOST_VERSION}.tar.bz2

0 commit comments

Comments
 (0)