I'm not sure it's a bug! See,
myldr has a pretty critical block between
TAINT and
NOTAINT macros. This means that people who rely on the environment for their Perl setup might have trouble running
static during installation... but I suspect that they're sort of screwed anyway, because
any other thing running in taint mode may similarly break!
Update: on second thought no doubt we can at least issue a warning at build time. Patch coming up...
Update II: Patch follows. Not 100% sure about the wording.
--- Makefile.PL.orig 2007-01-17 09:28:20.000000000 +0200
+++ Makefile.PL 2007-01-17 10:02:15.000000000 +0200
@@ -76,6 +76,16 @@
}
}
+ if ($ENV{PERL5LIB} || $ENV{PERLLIB}) {
+ warn <<'.';
+*** You have extra Perl library paths set in your environment. Please
+ note
+ that these paths (set with PERL5LIB or PERLLIB) are not honored b
+y perl
+ when running under taint mode, which may lead to problems. This i
+s a
+ limitation (by design) of Perl, not of PAR::Packer; but some of t
+he
+ problems may manifest here during installation.
+.
+ }
+
my @bin = ("script/parl$exe", "myldr/par$exe");
push @bin, ("script/parldyn$exe", "myldr/static$exe") if $dynperl
+;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.