summaryrefslogtreecommitdiffstats
path: root/doc/b
blob: c48cb4e972a7546da2064a8a3350f5a022cc2057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/bash

waf=waf-1.9.5
p2=${PYTHON:-${PYTHON2:-python2.7}}

if which $p2 &> /dev/null; then
    $p2 $waf $@
else
    echo "Required Python 2.7 (Asciidoc requirement)"
    exit 1
fi