From e84303c765fe4bbb8ce8070c5b3fc67a2f1edde6 Mon Sep 17 00:00:00 2001 From: nott Date: Wed, 16 Apr 2008 16:54:18 +0000 Subject: [PATCH] Only set PREFERRED_PARSER for Linux. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1082 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/PPCscan.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-xCAT-2.0/xCAT/PPCscan.pm b/perl-xCAT-2.0/xCAT/PPCscan.pm index 58de16336..0fe9b7335 100644 --- a/perl-xCAT-2.0/xCAT/PPCscan.pm +++ b/perl-xCAT-2.0/xCAT/PPCscan.pm @@ -5,7 +5,9 @@ use strict; use Getopt::Long; use Socket; use XML::Simple; -$XML::Simple::PREFERRED_PARSER='XML::Parser'; +if ($^O =~ /^linux/i) { + $XML::Simple::PREFERRED_PARSER='XML::Parser'; +} use xCAT::PPCcli qw(SUCCESS EXPECT_ERROR RC_ERROR NR_ERROR); use xCAT::PPCdb; use xCAT::GlobalDef;