summaryrefslogtreecommitdiff
path: root/contrib/buildsystems
diff options
context:
space:
mode:
authorPhilip Oakley <philipoakley@iee.org>2019-07-29 20:08:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-07-29 21:51:42 (GMT)
commit90d5170cac9627d2a0bdd9660acb0477434eef42 (patch)
tree4dc8dd611b9fe4209ffc3e6d41aa9b76c435dc4e /contrib/buildsystems
parente88919bfe285965bf99e3302a90187ba6f117be6 (diff)
downloadgit-90d5170cac9627d2a0bdd9660acb0477434eef42.zip
git-90d5170cac9627d2a0bdd9660acb0477434eef42.tar.gz
git-90d5170cac9627d2a0bdd9660acb0477434eef42.tar.bz2
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>
Diffstat (limited to 'contrib/buildsystems')
-rwxr-xr-xcontrib/buildsystems/engine.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/buildsystems/engine.pl b/contrib/buildsystems/engine.pl
index 53e65d4..11f0e16 100755
--- a/contrib/buildsystems/engine.pl
+++ b/contrib/buildsystems/engine.pl
@@ -333,7 +333,7 @@ sub handleLinkLine
} elsif ($part =~ /\.obj$/) {
# do nothing, 'make' should not be producing .obj, only .o files
} else {
- die "Unhandled lib option @ line $lineno: $part";
+ die "Unhandled link option @ line $lineno: $part";
}
}
# print "AppOut: '$appout'\nLFlags: @lflags\nLibs : @libs\nOfiles: @objfiles\n";