We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d08e91f + 86de173 commit c39aa47Copy full SHA for c39aa47
src/fpm_targets.f90
@@ -687,10 +687,11 @@ subroutine filter_modules(targets, list)
687
do i = 1, size(targets)
688
associate(target => targets(i)%ptr)
689
if (.not.allocated(target%source)) cycle
690
+ if (target%source%unit_type == FPM_UNIT_SUBMODULE) cycle
691
if (n + size(target%source%modules_provided) >= size(list)) call resize(list)
692
do j = 1, size(target%source%modules_provided)
693
n = n + 1
- list(n)%s = join_path(target%output_dir, "fpm", &
694
+ list(n)%s = join_path(target%output_dir, &
695
target%source%modules_provided(j)%s)
696
end do
697
end associate
0 commit comments