summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 64b1f6e)
raw | patch | inline | side by side (parent: 64b1f6e)
author | Junio C Hamano <junkio@cox.net> | |
Sun, 30 Oct 2005 23:07:01 +0000 (15:07 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 31 Oct 2005 01:28:04 +0000 (17:28 -0800) |
The require statement at the top of git-svnimport seems to confuse
rpmbuild dependency generation. It uses the newer notation "v5.8.0",
and rpm ends up requiring "perl(v5.8.0)", while we would want it to
say something like "perl >= 0:5.008".
Ryan suggests old-style "require 5.008" might fix this problem, so
here it is.
Signed-off-by: Junio C Hamano <junkio@cox.net>
rpmbuild dependency generation. It uses the newer notation "v5.8.0",
and rpm ends up requiring "perl(v5.8.0)", while we would want it to
say something like "perl >= 0:5.008".
Ryan suggests old-style "require 5.008" might fix this problem, so
here it is.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-svnimport.perl | patch | blob | history |
diff --git a/git-svnimport.perl b/git-svnimport.perl
index 20a85724cb1660a3411fa34717cd5f1e98ebd731..45b6a1986d1989d372077c5f388010ea988220e6 100755 (executable)
--- a/git-svnimport.perl
+++ b/git-svnimport.perl
# The head revision is on branch "origin" by default.
# You can change that with the '-o' option.
-require v5.8.0; # for shell-safe open("-|",LIST)
+require 5.008; # for shell-safe open("-|",LIST)
use strict;
use warnings;
use Getopt::Std;