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> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Philip Oakley committed
Jul 29, 2019 at 13:08 UTC
90d5170cac9627d2a0bdd9660acb0477434eef42
1 file changed
+1
-1
contrib/buildsystems/engine.pl
+1
-1
@@ -333,7 +333,7 @@ sub handleLinkLine
333
} elsif ($part =~ /\.obj$/) {
334
# do nothing, 'make' should not be producing .obj, only .o files
335
} else {
336
- die "Unhandled lib option @ line $lineno: $part";
336
+ die "Unhandled link option @ line $lineno: $part";
337
}
338
}
339
# print "AppOut: '$appout'\nLFlags: @lflags\nLibs : @libs\nOfiles: @objfiles\n";