Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 45462
Status: resolved
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: malmberg [...] Encompasserve.org
Cc:
AdminCc:

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



Subject: Compat.pm passthrough Makefile.pl needs build.com on VMS.
The passthrough makefile.pl created by compat.pm is hardcoded test for the creation of a script named "build". The file is named "Build.com" on VMS. The name is stored in the $self->{properties}{build_script} This causes the compat.t test to fail several tests. Attached is a Compat.pm patched to allow compat.t to pass on VMS.
Subject: m_b_compat_pm.gdiff
Download m_b_compat_pm.gdiff
application/octet-stream 561b

Message body not shown because it is not plain text.

Your patch appears to change the name of the Build script from "Build" to "build.com". (Note lowercase change). Is it "Build.com" or "build.com" or does VMS care? -- David
From: malmberg [...] Encompasserve.org
On Tue Apr 28 06:50:51 2009, DAGOLDEN wrote: Show quoted text
> Your patch appears to change the name of the Build script from "Build" > to "build.com". (Note lowercase change). > > Is it "Build.com" or "build.com" or does VMS care?
The change in case for 'Build' was a mistake on my part. The Build/Platform/VMS.pm changes the file name to be 'Build.com'. VMS by default does not pay attention to the case of files. It does have a mode to be case specific, but a lot of things will need fixing. -John
Thanks, John. Amended patch applied to trunk.