From 01fbd40bf2155f61238ae7bb087637dfab1f01fa Mon Sep 17 00:00:00 2001 From: nott Date: Wed, 16 Apr 2008 17:06:54 +0000 Subject: [PATCH] Set PREFERRED_PARSER in Linux only. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1086 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client-2.0/bin/psh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-client-2.0/bin/psh b/xCAT-client-2.0/bin/psh index aad73adc4..333fc29dc 100755 --- a/xCAT-client-2.0/bin/psh +++ b/xCAT-client-2.0/bin/psh @@ -8,7 +8,9 @@ BEGIN 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;