/trunk/configure
1,0 → 0,0
| link ./config/configure.py |
| #!/usr/bin/env python |
| import os |
| execfile(os.path.join(os.path.dirname(__file__), 'config', 'configure.py')) |
trunk/configure
Property changes :
Deleted: svn:special
- *
Added: svn:executable
+ *
/trunk/config/configure.py
24,6 → 24,12
| import sys |
| import time |
| |
| # should be run from the toplevel |
| configDir = os.path.abspath('config') |
| if not os.path.isdir(configDir): |
| raise RuntimeError('Run configure from $SLEPC_DIR, not '+os.path.abspath('.')) |
| sys.path.insert(0, configDir) |
| |
| import petscversion |
| import petscconf |
| import log |