diff options
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
| -rw-r--r-- | numpy/distutils/command/build_ext.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 078b8fb59..d53285c92 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -520,7 +520,7 @@ class build_ext (old_build_ext):          # Wrap unlinkable objects to a linkable one          if unlinkable_fobjects: -            fobjects = [os.path.relpath(obj) for obj in unlinkable_fobjects] +            fobjects = [os.path.abspath(obj) for obj in unlinkable_fobjects]              wrapped = fcompiler.wrap_unlinkable_objects(                      fobjects, output_dir=self.build_temp,                      extra_dll_dir=self.extra_dll_dir)  | 
