diff options
author | justdave%syndicomm.com <> | 2001-06-01 11:27:52 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-01 11:27:52 +0200 |
commit | 4946538c42e146a7d2ac309f69f12991caa305e1 (patch) | |
tree | 5b896d2ffeab754162a094b15311305de89f505c | |
parent | ce7bf3fec2b2e1aaef1d538692d9dfe7bec93f17 (diff) | |
download | bugzilla-4946538c42e146a7d2ac309f69f12991caa305e1.tar.gz bugzilla-4946538c42e146a7d2ac309f69f12991caa305e1.tar.xz |
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.
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index 6f2ca2706..b4b27b1e0 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; |