mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
15 lines
303 B
Bash
Executable File
15 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
which bjam >/dev/null 2>/dev/null && exec bjam "$@"
|
|
|
|
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 "$@"
|