diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-08-07 12:22:56 -0500 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2017-09-02 16:56:45 +0300 |
commit | 38a4f85722a0dc7039b7487e28baa86ee041ee11 (patch) | |
tree | e7b6a181c5a8afcd6dedf86fb27de9c37e153c1c /numpy/distutils | |
parent | e75161a285f9843758047e1db7068300865734cc (diff) | |
download | numpy-38a4f85722a0dc7039b7487e28baa86ee041ee11.tar.gz |
distutils: gnu: hash files + chained dlls
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 17bd320c3..12c644e8b 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -384,7 +384,7 @@ class Gnu95FCompiler(GnuFCompiler): if c_compiler.compiler_type != "msvc": raise ValueError("This method only supports MSVC") - object_hash = self._hash_files(objects) + object_hash = self._hash_files(list(objects) + list(chained_dlls)) if is_win64(): tag = 'win_amd64' |