Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor: split fpm_meta into parts #1119

Merged
merged 2 commits into from
Apr 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fpm/manifest/meta.f90
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module fpm_manifest_metapackages

!> fortran-lang minpack
type(metapackage_request_t) :: minpack

!> HDF5
type(metapackage_request_t) :: hdf5

Expand Down Expand Up @@ -199,7 +199,7 @@ subroutine new_meta_config(self, table, meta_allowed, error)

call new_meta_request(self%mpi, "mpi", table, meta_allowed, error)
if (allocated(error)) return

call new_meta_request(self%hdf5, "hdf5", table, meta_allowed, error)
if (allocated(error)) return

Expand Down
Loading
Loading