diff options
author | John S. Urban <urbanjost@comcast.net> | 2021-11-12 16:45:06 -0500 |
---|---|---|
committer | John S. Urban <urbanjost@comcast.net> | 2021-11-12 16:45:06 -0500 |
commit | 76f87ebbf1e763426d6eae2e57dc27fb78767d03 (patch) | |
tree | ecc09612f51359cc7e3cd922a75660a6e6b13008 /src/fpm.f90 | |
parent | 9fc759a1821df5a11bde1e48f0f09aca39130f1f (diff) | |
download | fpm-76f87ebbf1e763426d6eae2e57dc27fb78767d03.tar.gz fpm-76f87ebbf1e763426d6eae2e57dc27fb78767d03.zip |
correct basename(3f) function and subsequently fix --list option
The --list option was incorrectly trimming pathnames when suffix=.false.
was present, and the meaning of the --list option has changed from
originally being an option to display the full pathnames of targets
to displaying a table of matching target basenames. Since the --runner
command can be used to display the full pathnames and the runner command
defaults to an "echo" command the pathnames can still easily be generated,
but an example was added to reflect that.
As the help text needed editing anyway, changed some whitespace to
conform to the requirements of the txt2man(1) utility, to facilitate
easily generating man-pages and HTML versions of the help text.
Diffstat (limited to 'src/fpm.f90')
-rw-r--r-- | src/fpm.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fpm.f90 b/src/fpm.f90 index 0dd723c..6084a11 100644 --- a/src/fpm.f90 +++ b/src/fpm.f90 @@ -287,7 +287,7 @@ else call build_package(targets,model) endif -end subroutine +end subroutine cmd_build subroutine cmd_run(settings,test) class(fpm_run_settings), intent(in) :: settings |