diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-04-11 13:52:24 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-04-11 13:52:24 (GMT) |
commit | 1230e80c66ced10252a8db58c589913aa00bb89a (patch) | |
tree | 7a3ccd976205b93977c68399b6a7372b9f24c4d2 | |
parent | 4849d5b5ad3395161c58d12715c66f6d10bee633 (diff) | |
download | perl-Kolab-1230e80c66ced10252a8db58c589913aa00bb89a.tar.gz |
Fix references to CVS.
Use .git, not +git
-rw-r--r-- | lib/Kolab.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Kolab.pm b/lib/Kolab.pm index 0c743bf..fa8c61a 100644 --- a/lib/Kolab.pm +++ b/lib/Kolab.pm @@ -62,12 +62,12 @@ our @EXPORT = qw( our $KOLAB_BASE_VERSION = "2.3"; # Are current releases cvs based or is this a real release? -my $KOLAB_CVS = 1; +my $KOLAB_GIT = 1; our $KOLAB_RELEASE = sprintf "%0004d%02d%02d", ((gmtime)[5] + 1900), ((gmtime)[4] + 1), (gmtime)[3]; -if ($KOLAB_CVS) { - our $KOLAB_VERSION = $KOLAB_BASE_VERSION . "+git"; +if ($KOLAB_GIT) { + our $KOLAB_VERSION = $KOLAB_BASE_VERSION . "git"; our $VERSION = $KOLAB_VERSION . $KOLAB_RELEASE; } else { our $KOLAB_VERSION = $KOLAB_BASE_VERSION; |