in reply to Re^2: pp - where is the Perl interpreter ?
in thread pp - where is the Perl interpreter ?

That's simply the way the tool works. There's actually a decent argument if you're going to be packaging multiple programs as part of one application (or application suite/group) not to use pp to do so, to avoid that replication.

It may take some more fiddling and be less convenient for you as the developer, but since any recent perl should be relocatable on disk you can actually provide one single perl in your project's installation directory. You can then have all the programs use that. You can then package with parl rather than pp or not package the programs up at all. You'd just have your installation program extract the whole thing and set up any shortcuts or menu items.

  • Comment on Re^3: pp - where is the Perl interpreter ?