Skip to content

Commit 17cc803

Browse files
authored
Fix truncated help text (#578)
1 parent dfeb17a commit 17cc803

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/fpm_command_line.f90

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,14 @@ module fpm_command_line
119119
character(len=:), allocatable :: val_runner, val_compiler, val_flag, val_cflag, val_ldflag, &
120120
val_profile
121121

122+
! '12345678901234567890123456789012345678901234567890123456789012345678901234567890',&
122123
character(len=80), parameter :: help_text_compiler(*) = [character(len=80) :: &
123124
' --compiler NAME Specify a compiler name. The default is "gfortran"',&
124125
' unless set by the environment variable FPM_FC.',&
125-
' --c-compiler NAME Specify the C compiler name. By default automatic determined',&
126-
' unless set by the environment variable FPM_CC.',&
127-
' --archiver NAME Specify the archiver name. By default automatic determined',&
128-
' unless set by the environment variable FPM_AR.'&
126+
' --c-compiler NAME Specify the C compiler name. Automatically determined by ',&
127+
' default unless set by the environment variable FPM_CC.',&
128+
' --archiver NAME Specify the archiver name. Automatically determined by ',&
129+
' default unless set by the environment variable FPM_AR.'&
129130
]
130131

131132
character(len=80), parameter :: help_text_flag(*) = [character(len=80) :: &
@@ -136,10 +137,11 @@ module fpm_command_line
136137
' Note object and .mod directory locations are always',&
137138
' built in.',&
138139
' --c-flag CFLAGS selects compile arguments specific for C source in the build.',&
139-
' The default value is set by the FPM_CFLAGS environment variable.',&
140+
' The default value is set by the FPM_CFLAGS environment',&
141+
' variable.',&
140142
' --link-flag LDFLAGS',&
141-
' select arguments passed to the linker for the build.',&
142-
' The default value is set by the FPM_LDFLAGS environment variable.'&
143+
' select arguments passed to the linker for the build. The',&
144+
' default value is set by the FPM_LDFLAGS environment variable.'&
143145
]
144146

145147

0 commit comments

Comments
 (0)