Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bjam - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bjam
blob: 962d5a87acf4d378258f2a8de0a310264bc333d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -e
if 
  which bjam >/dev/null 2>/dev/null && #Have a bjam in path
  ! grep UFIHGUFIHBDJKNCFZXAEVA "$(which bjam)" >/dev/null && #bjam in path isn't this script
  bjam --help >/dev/null 2>/dev/null && #bjam in path isn't broken (i.e. has boost-build)
  bjam --version |grep "Boost.Build 201" >/dev/null 2>/dev/null #It's recent enough.  
then
  #Delegate to system bjam
  exec bjam "$@"
fi

top="$(dirname "$0")"
if [ ! -x "$top"/jam-files/bjam ]; then
  pushd "$top/jam-files/engine"
  ./build.sh
  cp -f bin.*/bjam ../bjam
  popd
fi

export BOOST_BUILD_PATH="$top"/jam-files/boost-build 
exec "$top"/jam-files/bjam "$@"