diff options
| author | Kenneth Heafield <github@kheafield.com> | 2012-09-11 14:23:39 +0100 | 
|---|---|---|
| committer | Kenneth Heafield <github@kheafield.com> | 2012-09-11 14:27:52 +0100 | 
| commit | 8882e9ebe158aef382bb5544559ef7f2a553db62 (patch) | |
| tree | f0ed595a45df16ddd1ca7ba61bc4ac0ee22d2dfb /bjam | |
| parent | 104e23dd0b0795abab4565228537438481dc5a5b (diff) | |
Update kenlm and build system
Diffstat (limited to 'bjam')
| -rwxr-xr-x | bjam | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -4,8 +4,8 @@ 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}" --help >/dev/null 2>/dev/null && #bjam in path isn't broken (i.e. has boost-build) -  "${bjam}" --version |grep "Boost.Build 201" >/dev/null 2>/dev/null #It's recent enough.   +  "${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}" "$@" | 
