Skip to content

Commit 53cdcf1

Browse files
committed
Fixes: for Windows release build using mingw-w64-gcc 8.1.0
Workaround for compiler bug when building Windows release. Update M_CLI2 revision to include same fix.
1 parent 67a4591 commit 53cdcf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fpm/fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tag = "v0.2.1"
1212

1313
[dependencies.M_CLI2]
1414
git = "https://github.com/urbanjost/M_CLI2.git"
15-
rev = "893cac0ce374bf07a70ffb9556439c7390e58131"
15+
rev = "e59fb2bfcf36199f1af506f937b3849180454a0f"
1616

1717
[[test]]
1818
name = "cli-test"

fpm/src/fpm_strings.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ subroutine split(input_line,array,delimiters,order,nulls)
155155

156156
select case (ilen)
157157

158-
case (:0) ! command was totally blank
158+
case (0) ! command was totally blank
159159

160160
case default ! there is at least one non-delimiter in INPUT_LINE if get here
161161
icol=1 ! initialize pointer into input line

0 commit comments

Comments
 (0)