From 8ab8f92481ae76a8ff40219af195721a46352325 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Fri, 1 Jun 2001 02:27:52 +0000 Subject: [PATCH] backing out previous fix to importxml.pl. It fixed it on Perl 5.6 and broke it on Perl 5.005. Will need to investigate. --- webtools/bugzilla/importxml.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/importxml.pl b/webtools/bugzilla/importxml.pl index 6f2ca27060d2..b4b27b1e0bd1 100755 --- a/webtools/bugzilla/importxml.pl +++ b/webtools/bugzilla/importxml.pl @@ -49,7 +49,7 @@ use strict; my $path = $0; $path =~ s#(.*)/[^/]+#$1#; chdir $path; -use lib "$path"; +use lib ($path); use XML::Parser; use Data::Dumper;