From 1ece21a021b5bc128b24238d24f0e2e306b45439 Mon Sep 17 00:00:00 2001 From: Chuck Brazie Date: Tue, 1 Apr 2014 13:23:24 -0400 Subject: [PATCH] Comment out the horizontal whitespace escape char --- perl-xCAT/xCAT/zvmUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/zvmUtils.pm b/perl-xCAT/xCAT/zvmUtils.pm index d18008afb..f8de180dc 100644 --- a/perl-xCAT/xCAT/zvmUtils.pm +++ b/perl-xCAT/xCAT/zvmUtils.pm @@ -2393,7 +2393,7 @@ sub getFreeRepoSpace { if ($master eq $ip) { # If the master IP and node IP match, then it is the management node my $out = `$sudo /bin/df -h /install | sed 1d`; - $out =~ s/\h+/ /g; + # causing problems on other platforms $out =~ s/\h+/ /g;$out =~ s/\h+/ /g; my @results = split(' ', $out); return ($results[3]); }