[EMAIL PROTECTED] wrote:
Author: jorton
Date: Mon Dec 19 08:20:37 2005
New Revision: 357718
URL: http://svn.apache.org/viewcvs?rev=357718&view=rev
Log:
- allow user-specified pidfile location; useful if testing
with SELinux since the pidfile has different access control
requirements to log files
> +my $shebang = length $Config{perlpath} < 62
> +? "#!$Config{perlpath}\n"
> +: < +#!/usr/bin/perl
shouldn't this be something generic like
#!perl
instead of /usr/bin/perl? not even every unix installation has that.
> +eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}
Geoffrey Young wrote:
+my $shebang = length $Config{perlpath} < 62
+? "#!$Config{perlpath}\n"
+: <
shouldn't this be something generic like
#!perl
instead of /usr/bin/perl? not even every unix installation has that.
+eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"
Geoffrey Young wrote:
It should probably be:
$Config{'startperl'}
% perl -V:startperl
startperl='#!/usr/bin/perl';
What do you think?
I just ran that on every box I have access to and it seems to be accurate.
on some boxes it's pretty long, though, but not exceeding 62 characters. in
re