From 0b435da37b2d85cd5ed5fe3b2710fb8c357dc8e2 Mon Sep 17 00:00:00 2001 From: mxi1 Date: Wed, 13 Oct 2010 10:12:49 +0000 Subject: [PATCH] for defect 3086530, there's one small mistake when handling the directory for litefile entries, I have fixed it. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7828 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/InstUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/InstUtils.pm b/perl-xCAT/xCAT/InstUtils.pm index af1251f5b..66d76aa9d 100644 --- a/perl-xCAT/xCAT/InstUtils.pm +++ b/perl-xCAT/xCAT/InstUtils.pm @@ -1026,7 +1026,7 @@ sub dolitesetup } else { # create dir and touch file in .default my $dir = dirname($instrootfile); - $mkcmd = qq~mkdir -p $dir; touch $default$file~; + $mkcmd = qq~mkdir -p $default$filedir; touch $default$file~; } my $output = xCAT::Utils->runcmd("$mkcmd", -1); if ($::RUNCMD_RC != 0)