Skip to content

Commit c45ed06

Browse files
committed
do not install .def files
1 parent 416e241 commit c45ed06

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/fpm/installer.f90

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,6 @@ subroutine install_library(self, library, error)
210210
! Handle shared library side-files only on Windows
211211
if (self%os==OS_WINDOWS) then
212212

213-
! Install .def if it exists
214-
def_file = join_path(library%output_dir, library%package_name // ".def")
215-
if (exists(def_file)) call self%install(def_file, self%libdir, error)
216-
if (allocated(error)) return
217-
218213
! Try both compiler-dependent import library names
219214
implib_file = join_path(library%output_dir, library%package_name // ".dll.a")
220215
if (exists(implib_file)) then

0 commit comments

Comments
 (0)