summaryrefslogtreecommitdiff
path: root/contrib/splice3/LINUX/splice3.compile
blob: 11090b98e2abb2cb31362f7a6e366498104cbed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python2.7
from py_compile import compile
from sys import exit

try:
    compile('LINUX/splice3-deshadow.py', 'LINUX/splice3-deshadow.pyc')
except:
    print '***ERROR*** splice3: splice3-deshadow.py failed to compile :-('
    exit('quitting...')

try:
    compile('LINUX/splice3.py', 'LINUX/splice3.pyc')
except:
    print '***ERROR*** splice3: splice3.py failed to compile'
    exit('quitting...')