in reply to Re^14: Build.PL versus Makefile.PL
in thread Build.PL versus Makefile.PL
If this goes ahead, please do not make it look for nmake.exe in some particular path. Rather, just try invoking it via the shell (eg.
or similar), and don't do the download if it already exists in the path.my $banner = `nmake /?`;
The freely distributable version of nmake (v1.5) is useless for building many applications that require later versions, and having the installed later version blindly and silently overwritten or preempted by an unnecessary "clever hack" is intensely frustrating.
Personally, I think it would be much better to simply output a clear message if it cannot be found:
nmake.exe not found. Either make this available via your path variable, or download it from ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^16: Build.PL versus Makefile.PL
by demerphq (Chancellor) on Feb 12, 2007 at 05:31 UTC |