From a82b07757c9b37c4f08387d0e6aa953eb983cf24 Mon Sep 17 00:00:00 2001 From: nott Date: Wed, 16 Apr 2008 17:18:37 +0000 Subject: [PATCH] Set PREFERRED_PARSER in Linux only. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1091 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/lib/xcat/plugins/nodediscover.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/nodediscover.pm b/xCAT-server-2.0/lib/xcat/plugins/nodediscover.pm index 4b7162623..e8d00c97b 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/nodediscover.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/nodediscover.pm @@ -8,7 +8,9 @@ use SNMP; use strict; use XML::Simple; -$XML::Simple::PREFERRED_PARSER='XML::Parser'; +if ($^O =~ /^linux/i) { + $XML::Simple::PREFERRED_PARSER='XML::Parser'; +} use Data::Dumper; use POSIX "WNOHANG"; use Storable qw(freeze thaw);