summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorM. J. T. Guy <mjtg@cus.cam.ac.uk>1998-07-15 13:41:14 +0100
committerGurusamy Sarathy <gsar@cpan.org>1998-07-19 06:23:10 +0000
commit8202fd39354c88c225e4200fee9877f5a082eebe (patch)
tree19b891ade5f952ca5edffd3fe1e42d49e8d637f2 /ext
parent8c5191c6cf56d6872d0b360ee91c299e861f844a (diff)
downloadperl-8202fd39354c88c225e4200fee9877f5a082eebe.tar.gz
minor re.pm cleanup
Message-Id: <E0ywPvu-0003V7-00@ursa.cus.cam.ac.uk> Subject: Re: [PATCH 5.004_74]Don't use tainted REs in Basename.pm when building perl p4raw-id: //depot/perl@1550
Diffstat (limited to 'ext')
-rw-r--r--ext/re/re.pm8
1 files changed, 3 insertions, 5 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm
index 8b49ca14f4..4a44753172 100644
--- a/ext/re/re.pm
+++ b/ext/re/re.pm
@@ -81,11 +81,9 @@ sub bits {
}
foreach my $s (@_){
if ($s eq 'debug') {
- eval <<'EOE';
- use DynaLoader;
- @ISA = ('DynaLoader');
- bootstrap re;
-EOE
+ require DynaLoader;
+ @ISA = ('DynaLoader');
+ bootstrap re;
install() if $on;
uninstall() unless $on;
next;