| 11 | | vdt_loc = os.path.join(os.getcwd(), "vdt") |
|---|
| 12 | | glue.run_cmd("sed -i -e 's|$VDT_LOCATION|%s|g' matplotlib*/setup.cfg" % \ |
|---|
| 13 | | vdt_loc) |
|---|
| 14 | | print glue.run_cmd("cat matplotlib*/setup.cfg") |
|---|
| 15 | | print glue.run_cmd("ls -l vdt/libpng/include") |
|---|
| 16 | | print glue.run_cmd("ls -l vdt/freetype/include") |
|---|
| 17 | | print glue.run_cmd("ls -l vdt/libpng/lib") |
|---|
| | 12 | component = os.environ.get('NMI_Gratia_component', 'setup') |
|---|
| | 13 | setup_py = os.path.join('setup', '%s.py' % component) |
|---|
| | 14 | setup_cfg = os.path.join('setup', '%s.cfg' % component) |
|---|
| | 15 | shutil.copy(setup_py, "setup.py") |
|---|
| | 16 | shutil.copy(setup_cfg, "setup.cfg") |
|---|