Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsean <seanlkml@sympatico.ca>2006-03-11 10:39:28 +0300
committerJunio C Hamano <junkio@cox.net>2006-03-11 11:03:30 +0300
commitbe767c91724275c4534965c0d25c452b76057602 (patch)
treeda78437674dda1f2f1207ee999847ebcc2ac11ff /git-annotate.perl
parentf2561fda364ad984ef1441a80c90b0ee04f1a7c4 (diff)
annotate.perl triggers rpm bug
RPM, at least on Fedora boxes, automatically creates a dependency for any perl "use" lines, and one of the help text lines unfortunately begins like this: -S, --rev-file revs-file use revs from revs-file instead of calling git-rev-list RPM gets confused and creates a false dependecy for the nonexistent perl package "revs". Obviously this creates a problem when someone goes to install the git-core rpm. Since other help sentences all start with capital letter, make this one match them by upcasing "Use". As a side effect, RPM stops getting confused. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-annotate.perl')
-rwxr-xr-xgit-annotate.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annotate.perl b/git-annotate.perl
index feea0a2d81..9df72a1662 100755
--- a/git-annotate.perl
+++ b/git-annotate.perl
@@ -20,7 +20,7 @@ sub usage() {
-r, --rename
Follow renames (Defaults on).
-S, --rev-file revs-file
- use revs from revs-file instead of calling git-rev-list
+ Use revs from revs-file instead of calling git-rev-list
-h, --help
This message.
';