diff options
author | Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | 2021-06-05 15:02:08 +0200 |
---|---|---|
committer | Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | 2021-06-05 15:03:41 +0200 |
commit | 1dd45535600237b2790a61eccd9e0c6cbabbc826 (patch) | |
tree | a6d30a137510d42f4d733def90fd599e9190319c /src/fpm.f90 | |
parent | 87a2cbfda5ac064c754e493d41950fde72e05fc7 (diff) | |
download | fpm-1dd45535600237b2790a61eccd9e0c6cbabbc826.tar.gz fpm-1dd45535600237b2790a61eccd9e0c6cbabbc826.zip |
Redirect output when searching for archiver
Diffstat (limited to 'src/fpm.f90')
-rw-r--r-- | src/fpm.f90 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fpm.f90 b/src/fpm.f90 index 5854cfb..3310a3f 100644 --- a/src/fpm.f90 +++ b/src/fpm.f90 @@ -4,12 +4,13 @@ use fpm_backend, only: build_package use fpm_command_line, only: fpm_build_settings, fpm_new_settings, & fpm_run_settings, fpm_install_settings, fpm_test_settings use fpm_dependency, only : new_dependency_tree -use fpm_environment, only: run, get_env, get_archiver +use fpm_environment, only: run, get_env use fpm_filesystem, only: is_dir, join_path, number_of_rows, list_files, exists, basename use fpm_model, only: fpm_model_t, srcfile_t, show_model, & FPM_SCOPE_UNKNOWN, FPM_SCOPE_LIB, FPM_SCOPE_DEP, & FPM_SCOPE_APP, FPM_SCOPE_EXAMPLE, FPM_SCOPE_TEST -use fpm_compiler, only: get_module_flags, is_unknown_compiler, get_default_c_compiler +use fpm_compiler, only: get_module_flags, is_unknown_compiler, get_default_c_compiler, & + get_archiver use fpm_sources, only: add_executable_sources, add_sources_from_dir |