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

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

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