diff options
author | Philip Oakley <philipoakley@iee.org> | 2019-07-29 13:08:05 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-29 14:51:42 -0700 |
commit | 90d5170cac9627d2a0bdd9660acb0477434eef42 (patch) | |
tree | 4dc8dd611b9fe4209ffc3e6d41aa9b76c435dc4e | |
parent | contrib/buildsystems: ignore irrelevant files in Generators/ (diff) | |
download | tgif-90d5170cac9627d2a0bdd9660acb0477434eef42.tar.xz |
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>
-rwxr-xr-x | contrib/buildsystems/engine.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/buildsystems/engine.pl b/contrib/buildsystems/engine.pl index 53e65d4db7..11f0e16dda 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"; |