mosesdecoder/bjam

18 lines
360 B
Bash
Executable File

#!/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 "$@"