diff options
author | David Cournapeau <cournape@gmail.com> | 2008-01-06 14:14:23 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-01-06 14:14:23 +0000 |
commit | c37beb2d7c474e24e468c9aefeaf2938971af5da (patch) | |
tree | 4af8f2cbc41ac698071480553d7975695348fff6 /numpy | |
parent | 6123f389746f0ff187aa4e05fa0c2c5d3e12dc58 (diff) | |
download | numpy-c37beb2d7c474e24e468c9aefeaf2938971af5da.tar.gz |
Add function add_configres for numpy.distutils.Configuration
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/misc_util.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 298d9b193..ceec7fcdd 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1212,6 +1212,10 @@ class Configuration(object): # options in distutils command. self.add_extension('', sources = []) + def add_configres(self): + file = os.path.join(get_scons_configres_dir(), self.local_path, + get_scons_configres_filename()) + def add_scripts(self,*files): """Add scripts to configuration. """ |