aboutsummaryrefslogtreecommitdiff
path: root/src/fpm_command_line.f90
diff options
context:
space:
mode:
authorurbanjost <urbanjost@comcast.net>2021-09-24 04:01:41 -0400
committerGitHub <noreply@github.com>2021-09-24 10:01:41 +0200
commit17cc803347b6c0da9f689413a88dc7ddfa6909bf (patch)
tree9539a84e871382fc433f36b1298c40f454f858a3 /src/fpm_command_line.f90
parentdfeb17a3811054716828be47644ac98b146746de (diff)
downloadfpm-17cc803347b6c0da9f689413a88dc7ddfa6909bf.tar.gz
fpm-17cc803347b6c0da9f689413a88dc7ddfa6909bf.zip
Fix truncated help text (#578)
Diffstat (limited to 'src/fpm_command_line.f90')
-rw-r--r--src/fpm_command_line.f9016
1 files changed, 9 insertions, 7 deletions
diff --git a/src/fpm_command_line.f90 b/src/fpm_command_line.f90
index df27695..69474c4 100644
--- a/src/fpm_command_line.f90
+++ b/src/fpm_command_line.f90
@@ -119,13 +119,14 @@ character(len=20),parameter :: manual(*)=[ character(len=20) ::&
character(len=:), allocatable :: val_runner, val_compiler, val_flag, val_cflag, val_ldflag, &
val_profile
+! '12345678901234567890123456789012345678901234567890123456789012345678901234567890',&
character(len=80), parameter :: help_text_compiler(*) = [character(len=80) :: &
' --compiler NAME Specify a compiler name. The default is "gfortran"',&
' unless set by the environment variable FPM_FC.',&
- ' --c-compiler NAME Specify the C compiler name. By default automatic determined',&
- ' unless set by the environment variable FPM_CC.',&
- ' --archiver NAME Specify the archiver name. By default automatic determined',&
- ' unless set by the environment variable FPM_AR.'&
+ ' --c-compiler NAME Specify the C compiler name. Automatically determined by ',&
+ ' default unless set by the environment variable FPM_CC.',&
+ ' --archiver NAME Specify the archiver name. Automatically determined by ',&
+ ' default unless set by the environment variable FPM_AR.'&
]
character(len=80), parameter :: help_text_flag(*) = [character(len=80) :: &
@@ -136,10 +137,11 @@ character(len=80), parameter :: help_text_flag(*) = [character(len=80) :: &
' Note object and .mod directory locations are always',&
' built in.',&
' --c-flag CFLAGS selects compile arguments specific for C source in the build.',&
- ' The default value is set by the FPM_CFLAGS environment variable.',&
+ ' The default value is set by the FPM_CFLAGS environment',&
+ ' variable.',&
' --link-flag LDFLAGS',&
- ' select arguments passed to the linker for the build.',&
- ' The default value is set by the FPM_LDFLAGS environment variable.'&
+ ' select arguments passed to the linker for the build. The',&
+ ' default value is set by the FPM_LDFLAGS environment variable.'&
]