From 7547c1f00550769e9022a7c55d9be8c8506e1c4a Mon Sep 17 00:00:00 2001 From: nott Date: Wed, 16 Apr 2008 17:11:40 +0000 Subject: [PATCH] Set PREFERRED_PARSER in Linux only. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1088 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client-2.0/bin/pping | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-client-2.0/bin/pping b/xCAT-client-2.0/bin/pping index 0d464e178..13194484f 100755 --- a/xCAT-client-2.0/bin/pping +++ b/xCAT-client-2.0/bin/pping @@ -12,7 +12,9 @@ use lib "$::XCATROOT/lib/perl"; use IO::Socket::SSL; use XML::Simple; -$XML::Simple::PREFERRED_PARSER='XML::Parser'; +if ($^O =~ /^linux/i) { + $XML::Simple::PREFERRED_PARSER='XML::Parser'; +} use Data::Dumper; use IO::Handle; use IO::Select;