From 5890139d474f70938aac8c8a7b145e516a179bbb Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 10 May 2012 09:28:10 +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/trunk@12607 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 1f5a16d5a..6cfad4965 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;