1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 16:15:39 -04:00

mostly changes to which perl it runs with, hopefully this will make it easier to fix when perl 5.18 comes out

This commit is contained in:
Ryan Voots 2012-06-10 11:43:00 -04:00
parent e6fd9d4ea0
commit 37c9c17649
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#!/home/ryan/perl5/perlbrew/perls/perl-5.14.1/bin/perl
#!perl
#use local::lib;
# Guess we're being activated inside bin/, so go up a directory.
@ -9,7 +9,7 @@ use lib "$FindBin::Bin/../lib";
use EvalServer;
use POSIX qw/setsid/;
$ENV{PATH}="/home/farnsworth/perl5/perlbrew/perls/perl-5.14.0/bin:/usr/bin/:/bin/";
#$ENV{PATH}="/home/farnsworth/perl5/perlbrew/perls/perl-5.14.0/bin:/usr/bin/:/bin/";
# Only daemonize if we're asked to.
if( $ARGV[0] eq '-d' ) {

View file

@ -40,7 +40,7 @@ sub spawn_eval {
}
warn "Spawning Eval: $args->{code}\n";
my $wheel = POE::Wheel::Run->new(
Program => [ '/home/ryan/perl5/perlbrew/perls/perl-5.14.1/bin/perl', $filename ],
Program => [ $^X, $filename ],
ProgramArgs => [ ],
CloseOnCall => 1, #Make sure all of the filehandles are closed.

View file

@ -1,4 +1,4 @@
#!/home/ryan/perl5/perlbrew/perls/perl-5.14.1/bin/perl
#!perl
#use lib '/home/ryan/perl5/lib/perl5/i686-linux';
#use lib '/home/ryan/perl5/lib/perl5';