Subversion Repositories slepc-dev

Rev

Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2211 jroman 1
#!/usr/bin/env python
2250 jroman 2
 
3
import sys
4
if not type(sys.version_info) is tuple and sys.version_info.major > 2:
5
  print('Configure does not support Python 3 yet, please run as')
6
  print('  python2 ' + ' '.join(["'" + a + "'" for a in sys.argv]))
7
  sys.exit(1)
8
 
2211 jroman 9
import os
10
execfile(os.path.join(os.path.dirname(__file__), 'config', 'configure.py'))