Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bjam
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-07-26 02:37:00 +0400
committerKenneth Heafield <github@kheafield.com>2012-07-26 02:37:00 +0400
commit4b6eda0a8efa3de9dea5880f9764b6f53a798166 (patch)
treecb496b97c97320dbb151bd373145e999a982161f /bjam
parent1cbf4576851900282c043e882e4b3a7e838f8f35 (diff)
Reverse order of checks for Tom Hoar
Diffstat (limited to 'bjam')
-rwxr-xr-xbjam4
1 files changed, 2 insertions, 2 deletions
diff --git a/bjam b/bjam
index d1ac8a555..1cea4fb15 100755
--- a/bjam
+++ b/bjam
@@ -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}" --version |grep "Boost.Build 201" >/dev/null 2>/dev/null && #It's recent enough.
+ "${bjam}" --help >/dev/null 2>/dev/null #bjam in path isn't broken (i.e. has boost-build)
then
#Delegate to system bjam
exec "${bjam}" "$@"