repo.or.cz
/
Python-Scripts.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Another small update.
[Python-Scripts.git]
/
PySmile
/
pysmile-gen
blob
38fa835fb51ad1d910852437fcdfe839e044beef
1
#!/bin/sh
2
3
if
[
-z
"
${PYTHON}
"
];
then
4
export
PYTHON
=
"$(/usr/bin/which python2)"
5
fi
6
if
[
-z
"
${CC}
"
];
then
7
export
CC
=
"$(/usr/bin/which gcc)"
8
fi
9
${PYTHON}
-b -B -x
"./pysmile.py"
"$@"