Check-in Number:
|
446 | |
Date: |
2001-May-04 15:33:53 (local)
2001-May-04 13:33:53 (UTC) |
User: | rse |
Branch: | |
Comment: |
Accept CVS 1.11 and newer |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shiela/ChangeLog 1.3 -> 1.4
--- ChangeLog 2001/05/04 13:25:18 1.3
+++ ChangeLog 2001/05/04 13:33:53 1.4
@@ -11,6 +11,13 @@
Changes between 0.9.1 and 0.9.2 (10-Feb-2001 to 04-May-2001):
+ *) Make sure shiela accepts CVS 1.11 and newer, too.
+ [Ralf S. Engelschall]
+
+ *) Adjusted shiela-install's Perl tool checks to use
+ the logic of GNU shtool' "path" command.
+ [Ralf S. Engelschall]
+
*) Upgraded to GNU shtool 1.5.3
[Ralf S. Engelschall]
|
|
ossp-pkg/shiela/shiela.pl 1.4 -> 1.5
--- shiela.pl 2001/05/04 13:25:18 1.4
+++ shiela.pl 2001/05/04 13:33:53 1.5
@@ -193,7 +193,7 @@
$RT->{cvsvers} = $1 if ($v =~ m|Concurrent\s+Versions\s+System\s+\(CVS\)\s+([\d.]+)\s+|s);
$RT->{cvsossp} = 0;
$RT->{cvsossp} = 1 if ($v =~ m|OSSP|s);
- die "$RT->{cvs} is not at least CVS 1.10" if ($RT->{cvsvers} !~ m|^1\.10|);
+ die "$RT->{cvs} is not at least CVS 1.10" if ($RT->{cvsvers} !~ m|^1\.1[0-9]|);
$RT->{useserver} = 0;
$RT->{useserver} = 1 if ($v =~ m|server|s);
|
|