diff options
author | Gisle Aas <gisle@aas.no> | 2005-03-17 20:06:40 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-18 14:02:36 +0000 |
commit | 20ef40cf6a00eee95a449854794854a93e411e3b (patch) | |
tree | e1a0b493463696f7f5cf6345c51fbe7fb7064af8 /ext | |
parent | 7fc634935189abec1d574a9733c7093e5c9f2781 (diff) | |
download | perl-20ef40cf6a00eee95a449854794854a93e411e3b.tar.gz |
Re: sitecustomize.pl [PATCH]
Message-ID: <lru0n9w433.fsf@caliper.activestate.com>
Adds a new command-line switch, -f, and a new optional
compile-time setting -DUSE_SITECUSTOMIZE
p4raw-id: //depot/perl@24043
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Devel/DProf/t/DProf.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Devel/DProf/t/DProf.t b/ext/Devel/DProf/t/DProf.t index 3488bc8899..bdd70b002b 100644 --- a/ext/Devel/DProf/t/DProf.t +++ b/ext/Devel/DProf/t/DProf.t @@ -48,7 +48,7 @@ sub profile { my $opt_d = '-d:DProf'; my $t_start = new Benchmark; - open( R, "$perl \"$opt_d\" $test |" ) || warn "$0: Can't run. $!\n"; + open( R, "$perl -f \"$opt_d\" $test |" ) || warn "$0: Can't run. $!\n"; @results = <R>; close R or warn "Could not close: $!"; my $t_total = timediff( new Benchmark, $t_start ); |