@@ -90,7 +90,6 @@ module fpm_command_line
90
90
character (len= ibug),allocatable :: name (:)
91
91
character (len= :),allocatable :: args
92
92
character (len= :),allocatable :: runner
93
- character (len= :),allocatable :: runner_args
94
93
logical :: example
95
94
contains
96
95
procedure :: runner_command
@@ -144,7 +143,7 @@ module fpm_command_line
144
143
& ' test' , ' runner' , ' install' , ' update' , ' list' , ' help' , ' version' , ' publish' ]
145
144
146
145
character (len= :), allocatable :: val_runner, val_compiler, val_flag, val_cflag, val_cxxflag, val_ldflag, &
147
- val_profile, val_runner_args
146
+ val_profile
148
147
149
148
! '12345678901234567890123456789012345678901234567890123456789012345678901234567890',&
150
149
character (len= 80 ), parameter :: help_text_build_common(* ) = [character (len= 80 ) :: &
@@ -271,8 +270,7 @@ subroutine get_command_line_settings(cmd_settings)
271
270
run_args = &
272
271
' --target " "' // &
273
272
' --list F' // &
274
- ' --runner " "' // &
275
- ' --runner-args " "'
273
+ ' --runner " "'
276
274
277
275
compiler_args = &
278
276
' --profile " "' // &
@@ -326,8 +324,7 @@ subroutine get_command_line_settings(cmd_settings)
326
324
archiver = sget(' archiver' )
327
325
allocate (fpm_run_settings :: cmd_settings)
328
326
val_runner= sget(' runner' )
329
- val_runner_args= sget(' runner-args' )
330
- if (specified(' runner' ) .and. val_runner==' ' )val_runner= ' echo'
327
+ if (specified(' runner' ) .and. val_runner==' ' )val_runner= ' echo'
331
328
cmd_settings= fpm_run_settings(&
332
329
& args= remaining,&
333
330
& profile= val_profile,&
@@ -345,7 +342,6 @@ subroutine get_command_line_settings(cmd_settings)
345
342
& build_tests= .false. ,&
346
343
& name= names,&
347
344
& runner= val_runner,&
348
- & runner_args= val_runner_args,&
349
345
& verbose= lget(' verbose' ) )
350
346
351
347
case (' build' )
@@ -577,7 +573,6 @@ subroutine get_command_line_settings(cmd_settings)
577
573
allocate (fpm_test_settings :: cmd_settings)
578
574
val_runner= sget(' runner' )
579
575
if (specified(' runner' ) .and. val_runner==' ' )val_runner= ' echo'
580
- val_runner_args= sget(' runner-args' )
581
576
cmd_settings= fpm_test_settings(&
582
577
& args= remaining, &
583
578
& profile= val_profile, &
@@ -595,7 +590,6 @@ subroutine get_command_line_settings(cmd_settings)
595
590
& build_tests= .true. , &
596
591
& name= names, &
597
592
& runner= val_runner, &
598
- & runner_args= val_runner_args, &
599
593
& verbose= lget(' verbose' ) )
600
594
601
595
case (' update' )
0 commit comments