Rename some doc files --> *.rst for editor support and for GitHub visibility.

This commit is contained in:
Robin Dunn
2016-05-11 20:02:03 -07:00
parent c42ee6bce3
commit 028d173676
6 changed files with 37 additions and 48 deletions

13
b
View File

@@ -2,16 +2,13 @@
##set -o xtrace
#PYVER=2.7
#PYVER2=27
PYVER=3.4
PYVER2=34
if [ "$OSTYPE" = "cygwin" ]; then
$TOOLS/python$PYVER2/python.exe -u build.py "$@"
PYTHON=`which python.exe`
echo $PYTHON
$PYTHON -u build.py "$@"
else
PATH=/usr/local/bin:$PATH
PYTHON=`which python$PYVER`
PYTHON=`which python`
echo $PYTHON
$PYTHON -u build.py "$@"
fi