From e2dba9bfb8ec1afaabc250f3ee1189d5cc4e0cce Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 10 May 2012 09:26:39 +0000 Subject: [PATCH] Fixing bug 3508572: SvrUtils.pm issues command mkpath, mkpath is included by File::Path, instead of File::Basename. I cannot find any other command that is included by File::Basename, so just replace it with correct one. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@12606 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/perl/xCAT/SvrUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/perl/xCAT/SvrUtils.pm b/xCAT-server/lib/perl/xCAT/SvrUtils.pm index 0dd606bb5..2cba744ac 100644 --- a/xCAT-server/lib/perl/xCAT/SvrUtils.pm +++ b/xCAT-server/lib/perl/xCAT/SvrUtils.pm @@ -10,7 +10,7 @@ use lib "$::XCATROOT/lib/perl"; require xCAT::Table; require xCAT::Utils; require xCAT::NetworkUtils; -use File::Basename; +use File::Path; use strict; use Exporter;