https://github.com/wilkeraziz/mosesdecoder
Raw File
Tip revision: 74c6cef3b3d7ad0928ad30b3c041fb9952441c6f authored by Jacob Dlougach on 16 October 2012, 05:30:48 UTC
Changes to make things compile
Tip revision: 74c6cef
bjam
#!/bin/bash
set -e
if
  bjam="$(which bjam 2>/dev/null)" && #exists
  [ ${#bjam} != 0 ] && #paranoia about which printing nothing then returning true
  ! grep UFIHGUFIHBDJKNCFZXAEVA "${bjam}" </dev/null >/dev/null && #bjam in path isn't this script
  "${bjam}" --sanity-test 2>/dev/null |grep Sane >/dev/null && #The test in jam-files/sanity.jam passes
  (cd jam-files/fail && ! "${bjam}") >/dev/null #Returns non-zero on failure
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 "$@"
back to top