Skip Menu |

This queue is for tickets about the Clone CPAN distribution.

Report information
The Basics
Id: 18029
Status: resolved
Priority: 0/
Queue: Clone

People
Owner: Nobody in particular
Requestors: perl [...] leeland.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Missing version when imported (0.19)
I ran into a problem trying to install this on perl v5.6.1 built for sparc64-linux which seems similar to a previous bug report. (#14851) All tests would fail with the following error. Clone object version undef does not match bootstrap parameter 0.19 at /usr/local/lib/perl5/5.6.1/sparc64-linux/DynaLoader.pm line 225 By changing the commented out version number, it was able to correctly find the version number and install correctly. From: ## ( $VERSION ) = '$Revision: 0.19 $ ' =~ /\$Revision:\s+([^\s]+)/; To: ## ( $EVERSION ) = '$Revision: 0.19 $ ' =~ /\$Revision:\s+([^\s]+)/;