Closed
Bug 560318
Opened 15 years ago
Closed 15 years ago
install-module.pl fails to install DateTime with modern versions of Module::Build and CPAN
Categories
(Bugzilla :: Installation & Upgrading, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 3.6
People
(Reporter: mkanat, Assigned: mkanat)
Details
Attachments
(1 file, 1 obsolete file)
1.13 KB,
patch
|
mkanat
:
review+
|
Details | Diff | Splinter Review |
I recently had to install the latest Module::Build and CPAN while using install-module.pl on an old Perl (5.8.1), in order to get DateTime to install. But when trying to install DateTime, I got an error, like this:
ERROR: Can't create '/opt/perl-5.8.1/lib/perl5/site_perl/5.8.1/i386-linux-thread-multi'
As you can see, it was trying to write to the global dir instead of the local one.
So apparently, we also need to set mbuild_install_arg, or possibly set mbuildpl_arg instead of mbuild_arg.
Assignee | ||
Comment 1•15 years ago
|
||
Wow, that took a REALLY long time to figure out! Okay, so the problem is that newer versions of Module::Build have a different behavior for install_base. So now I set arguments in such a way that they will work on all versions of Module::Build--in particular, I had to set install_path for the "lib" and "arch" dirs both, and then I also had to make sure that mbuild_install_arg was also set.
I could have just done mbuildpl_arg instead, but that would only have been run once by CPAN, even if we were doing multiple install-module.pl calls across various different Bugzilla installations on the same machine, so that could have been disastrous (it would have installed into the old Bugzilla directory when the user was trying to install into the new Bugzilla directory).
Assignee | ||
Updated•15 years ago
|
Flags: approval3.6+
Flags: approval+
Assignee | ||
Comment 2•15 years ago
|
||
Committing to: bzr+ssh://bzr.mozilla.org/bugzilla/trunk/
modified Bugzilla/Install/CPAN.pm
Committed revision 7132.
Committing to: bzr+ssh://bzr.mozilla.org/bugzilla/3.6/
modified Bugzilla/Install/CPAN.pm
Committed revision 7086.
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•15 years ago
|
Attachment #445600 -
Attachment is obsolete: true
Attachment #445600 -
Attachment is patch: false
Attachment #445600 -
Flags: review+
Updated•15 years ago
|
Attachment #445600 -
Attachment mime type: text/plain → image/jpg
You need to log in
before you can comment on or make changes to this bug.
Description
•