diff options
Diffstat (limited to 'doc/b')
-rwxr-xr-x | doc/b | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,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 + |