summaryrefslogtreecommitdiff
path: root/bjam
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-10-11 14:06:32 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2012-10-11 14:06:32 -0400
commit07ea7b64b6f85e5798a8068453ed9fd2b97396db (patch)
tree644496a1690d84d82a396bbc1e39160788beb2cd /bjam
parent37b9e45e5cb29d708f7249dbe0b0fb27685282a0 (diff)
parenta36fcc5d55c1de84ae68c1091ebff2b1c32dc3b7 (diff)
Merge branch 'master' of https://github.com/redpony/cdec
Diffstat (limited to 'bjam')
-rwxr-xr-xbjam23
1 files changed, 0 insertions, 23 deletions
diff --git a/bjam b/bjam
deleted file mode 100755
index d1ac8a55..00000000
--- a/bjam
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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}" --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.
-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 "$@"