We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50a1b6 commit fa9a499Copy full SHA for fa9a499
fpm/src/fpm_command_line.f90
@@ -471,15 +471,15 @@ subroutine check_build_vals()
471
val_compiler='gfortran'
472
endif
473
474
- val_flag = sget('flag')
+ val_flag = " " // sget('flag')
475
val_profile = sget('profile')
476
if (val_flag == '') then
477
call get_default_compile_flags(val_compiler, val_profile == "release", val_flag)
478
else
479
select case(val_profile)
480
case("release", "debug")
481
call get_default_compile_flags(val_compiler, val_profile == "release", flags)
482
- val_flag = flags // " " // val_flag
+ val_flag = flags // val_flag
483
end select
484
end if
485
allocate(character(len=16) :: val_build)
0 commit comments