in reply to Dealing with incorrect shebang line entries on Windows with Apache

You could create a Makefile.PL that specifies the programs you want to install in EXE_FILES (you will also need to specify the correct location to install), this way the shebang will be changed to point to the perl that was used to run the Makefile.PL. See ExtUtils::MakeMaker for more details.

/J\

  • Comment on Re: Dealing with incorrect shebang line entries on Windows with Apache
  • Download Code

Replies are listed 'Best First'.
Re^2: Dealing with incorrect shebang line entries on Windows with Apache
by tohann (Sexton) on May 04, 2005 at 16:10 UTC
    So, in this instance, I would run the Makefile.PL after bringing all the code down to my local machine from CVS, and then again on the server after the changes and checking it back in to CVS?