diff options
author | David Cournapeau <cournape@gmail.com> | 2009-04-21 10:45:34 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-04-21 10:45:34 +0000 |
commit | 4418fa67db0f807405f8f326ddc50c7ac47f247c (patch) | |
tree | 7ff4ebecb52fc1c6bad28f64b20983f7d6ab5d47 /numpy/distutils/command/build_ext.py | |
parent | b1873ad41a86e21ab51e7f08208241f0e2d1b397 (diff) | |
download | numpy-4418fa67db0f807405f8f326ddc50c7ac47f247c.tar.gz |
Move is_bootstrapping outside scons command, may be useful elsewhere.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 2b114d4a7..f8ffc8545 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -399,6 +399,9 @@ class build_ext (old_build_ext): else: kws = {} + print "$$$$$$$$$$$$$$$$$$$$$$$", dir(self) + print "$$$$$$$$$$$$$$$$$$$$$$$", self.build_lib + print "is bootstrapping ?" linker(objects, ext_filename, libraries=libraries, library_dirs=library_dirs, |