Skip to content

Commit d8e1f80

Browse files
committed
boost build fix
1 parent 61cf977 commit d8e1f80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ before_install:
88
- mkdir -p $BOOST_ROOT
99
- curl -s http://cznic.dl.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2|tar xfj - -C $BOOST_ROOT
1010
install:
11-
- (cd $BOOST_ROOT; ./bootstrap.sh)
12-
- (cd $BOOST_ROOT; ./b2 --prefix=$PWD install)
11+
- cd $BOOST_ROOT
12+
- ./bootstrap.sh
13+
- ./b2 --prefix=$PWD install
1314

1415
before_script: cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DBOOST_ROOT=$BOOST_ROOT
1516
script:

0 commit comments

Comments
 (0)