first try for pip install

This commit is contained in:
roberto@sirius
2010-01-26 16:14:33 +01:00
parent 6be13c2e04
commit fd42997e8f
2 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -17,7 +17,11 @@ if uver != "25":
bin_name = "%s%s" % (bin_name, uver)
make_cmd = "%s -f Makefile.Py%s" % (make_cmd, uver)
os.system(make_cmd)
try:
if sys.argv[1] == 'install':
os.system(make_cmd)
except:
pass
from distutils.core import setup