mosesdecoder/bjam
2011-11-18 13:14:09 -05:00

14 lines
299 B
Bash
Executable File

#!/bin/env 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
BOOST_BUILD_PATH="$top"/jam-files/boost-build exec "$top"/jam-files/bjam "$@"