in reply to Re^3: INSTALLSCRIPT Not Working
in thread INSTALLSCRIPT Not Working
No go. INSTALLBIN doesn't help. Still goes into the bin dir under the PREFIX dir.
I suspect that it's a packaging mistake, not a MakeMaker problem.
...so I followed up on that and, for instance in Perl::Tidy, the script is specified as EXE_SCRIPT:
EXE_FILES => ['bin/perltidy'],From the MakeMaker man page:
EXE_FILESRef to array of executable files. The files will be copied to the INST_SCRIPT directory. Make realclean will delete them from there again.
If your executables start with something like #!perl or #!/usr/bin/perl MakeMaker will change this to the path of the perl 'Makefile.PL' was invoked with so the programs will be sure to run properly even if perl is not in /usr/bin/perl.
So, problem solved. Thanks for your help.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: INSTALLSCRIPT Not Working
by bergbrains (Acolyte) on Oct 04, 2010 at 18:07 UTC |