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: 8a61f3f65de050843abe97e464643c3f9ae69e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
set -e
#This checks for bjam including boost-build.
if bjam --help >/dev/null 2>/dev/null; then
  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 "$@"