Skip to content

Commit 1c1b4f0

Browse files
committed
makedef: fix dumpbin output parsing when a member name contains the string "Summary"
1 parent 883fb6f commit 1c1b4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

makedef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ foreach(@dump) {
119119
# Where to start and stop parsing
120120
if (/public symbols/) {
121121
$started = 1;
122-
} elsif (/Summary/) {
122+
} elsif (/^\s+Summary/) {
123123
$started = 0;
124124
}
125125

0 commit comments

Comments
 (0)