summaryrefslogtreecommitdiff
path: root/bjam
diff options
context:
space:
mode:
authorAvneesh Saluja <asaluja@gmail.com>2013-03-28 18:28:16 -0700
committerAvneesh Saluja <asaluja@gmail.com>2013-03-28 18:28:16 -0700
commit5b8253e0e1f1393a509fb9975ba8c1347af758ed (patch)
tree1790470b1d07a0b4973ebce19192e896566ea60b /bjam
parent2389a5a8a43dda87c355579838559515b0428421 (diff)
parentb203f8c5dc8cff1b9c9c2073832b248fcad0765a (diff)
fixed conflicts
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 "$@"