in reply to Does an installer alter the #! path on a script?

For a module/script author to accomplish this you design your makefile properly. To read up on the topic, open the POD for ExtUtils::MakeMaker in your browser. Search the text for #!. It's covered there:

EXE_FILES

Ref 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.


Dave

Replies are listed 'Best First'.
Re^2: Does an installer alter the #! path on a script?
by boftx (Deacon) on Nov 25, 2013 at 01:13 UTC

    Thanks. I was just about to post and update saying I had found that comment. :(

    It helps to remember that the primary goal is to drain the swamp even when you are hip-deep in alligators.

      Thanks. I was just about to post and update saying I had found that comment. :(

      :)smile , now install #! and install shebang yields results :)