Skip to content

Commit a5a5ec2

Browse files
Philip Oakleydscho
Philip Oakley
authored andcommitted
contrib/buildsystems: fix misleading error message
The error message talked about a "lib option", but it clearly referred to a link option. Signed-off-by: Philip Oakley <philipoakley@iee.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 481b2bf commit a5a5ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/buildsystems/engine.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ sub handleLinkLine
333333
} elsif ($part =~ /\.obj$/) {
334334
# do nothing, 'make' should not be producing .obj, only .o files
335335
} else {
336-
die "Unhandled lib option @ line $lineno: $part";
336+
die "Unhandled link option @ line $lineno: $part";
337337
}
338338
}
339339
# print "AppOut: '$appout'\nLFlags: @lflags\nLibs : @libs\nOfiles: @objfiles\n";

0 commit comments

Comments
 (0)