From: justdave%syndicomm.com <> Date: Fri, 1 Jun 2001 09:27:52 +0000 (+0000) Subject: backing out previous fix to importxml.pl. It fixed it on Perl 5.6 and broke it on... X-Git-Tag: bugzilla-2.14~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4946538c42e146a7d2ac309f69f12991caa305e1;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/importxml.pl b/importxml.pl index 6f2ca27060..b4b27b1e0b 100755 --- a/importxml.pl +++ b/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;