From ccba6ed1074287544ca68b2be2d0dca503a32e41 Mon Sep 17 00:00:00 2001 From: nott Date: Wed, 16 Apr 2008 17:09:35 +0000 Subject: [PATCH] Set PREFERRED_PARSER in Linux only. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1087 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client-2.0/bin/pscp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-client-2.0/bin/pscp b/xCAT-client-2.0/bin/pscp index e62d2b0c1..132dcaa7e 100755 --- a/xCAT-client-2.0/bin/pscp +++ b/xCAT-client-2.0/bin/pscp @@ -7,7 +7,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;